You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Daniel Fisher (JIRA)" <ji...@apache.org> on 2013/07/10 21:37:48 UTC

[jira] [Created] (DIRAPI-151) Result codes from extended operations are lost

Daniel Fisher created DIRAPI-151:
------------------------------------

             Summary: Result codes from extended operations are lost
                 Key: DIRAPI-151
                 URL: https://issues.apache.org/jira/browse/DIRAPI-151
             Project: Directory Client API
          Issue Type: Bug
            Reporter: Daniel Fisher


Invoking LdapConnection#extended(String, byte[]) always returns success.

Performing a PasswordModifyOperation with an incorrect old password should result in an error code 53, unwilling to perform.
However, the API returns error code 0, success, for the following code:

{code}
    ExtendedResponse response = conn.extended(
      "1.3.6.1.4.1.4203.1.11.1",
      new byte[] {...});
    response.getLdapResult(); // always returns success
{code}

The bug may be around line 3106 of LdapNetworkConnection, where the actual response is discarded in favor of a response built from the request object.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira