ErrorText (LDAP function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:


This method is a read-only property that reports the error message text from the
This method is a read-only property that reports the error message text from the
last <var>Ldap</var> method for which an error message was returned.
last <var>LDAP</var> method for which an error message was returned.
==Syntax==
==Syntax==
{{Template:LDAP:ErrorText syntax}}
{{Template:LDAP:ErrorText syntax}}
Line 19: Line 19:
of a related error.
of a related error.
<li>The <var>ErrorText</var> message will be the same as that indicated by the status
<li>The <var>ErrorText</var> message will be the same as that indicated by the status
return from <var>Ldap</var> methods
return from <var>LDAP</var> methods
for problems &amp;amp;ldquo;internal&amp;amp;rdquo; to the client, will be a message from a
for problems "internal" to the client, will be a message from a
related error, or will be a message from a server-reported error.
related error, or will be a message from a server-reported error.
<li>If an <var>ErrorText</var> message (and number) contain information reported by the
<li>If an <var>ErrorText</var> message (and number) contain information reported by the
Line 31: Line 31:
==Examples==
==Examples==
<ul>
<ul>
<li>An <var>Ldap</var> <var>Bind</var> call fails and returns a status value of <code>-5</code>,
<li>An <var>LDAP</var> <var>Bind</var> call fails and returns a status value of <code>-5</code>,
which indicates that the bind authorization failed.
which indicates that the bind authorization failed.
When the following statement was issued:
When the following statement was issued:

Revision as of 23:33, 15 August 2011

Error message of the most recent LDAP error (LDAP class)


This method is a read-only property that reports the error message text from the last LDAP method for which an error message was returned.

Syntax

%string = ldap:ErrorText

Syntax terms

%string A string variable to contain the returned error message text. The %string value is an empty string if no methods have been called.
LDAP An LDAP object variable.

Usage notes

  • The ErrorNumber method reports the error number associated with the ErrorText message or a number of a related error.
  • The ErrorText message will be the same as that indicated by the status return from LDAP methods for problems "internal" to the client, will be a message from a related error, or will be a message from a server-reported error.
  • If an ErrorText message (and number) contain information reported by the server, they may conform to the LDAP RFC, which lists dozens of such server result codes (positive integers) and descriptions, but no accompanying diagnostic text for these codes is standardized.

Examples

  • An LDAP Bind call fails and returns a status value of -5, which indicates that the bind authorization failed. When the following statement was issued:

    Print 'Error text is ': ' %ld:ErrorText

    The result was: Error text is LDBIND FTPCONN failed to connect. ErrorText and returned status provide corroborating information.

See also