Working With Extended OperationsThis chapter demonstrates how to use LDAP extended operations.About LDAP Extended OperationsExtended operations allow additional operations to be defined for
services not already available in the protocolDetermining Supported Extended OperationsFor OpenDJ, the extended operations supported are listed in the
Administration Guide appendix, LDAP Extended
Operations. You can access the list of OIDs for
supported LDAP controls by reading the supportedExtension
attribute of the root DSE.$ ldapsearch
--baseDN ""
--searchScope base
--port 1389
"(objectclass=*)" supportedExtension
dn:
supportedExtension: 1.3.6.1.1.8
supportedExtension: 1.3.6.1.4.1.26027.1.6.1
supportedExtension: 1.3.6.1.4.1.26027.1.6.2
supportedExtension: 1.3.6.1.4.1.26027.1.6.3
supportedExtension: 1.3.6.1.4.1.4203.1.11.1
supportedExtension: 1.3.6.1.4.1.4203.1.11.3
supportedExtension: 1.3.6.1.4.1.1466.20037The following excerpt shows code to check for supported extended
operations.
/**
* Controls supported by the LDAP server.
*/
private static Collection<String> extendedOperations;
/**
* Populate the list of supported LDAP extended operation OIDs.
*
* @param connection
* Active connection to the LDAP server.
* @throws ErrorResultException
* Failed to get list of extended operations.
*/
static void checkSupportedExtendedOperations(Connection connection)
throws ErrorResultException {
extendedOperations = RootDSE.readRootDSE(connection)
.getSupportedExtendedOperations();
}
/**
* Check whether an extended operation is supported. Call
* {@code checkSupportedExtendedOperations} first.
*
* @param extendedOperation
* Check support for this extended operation, provided by OID.
* @return True if the control is supported.
*/
static boolean isSupported(final String extendedOperation) {
if (extendedOperations != null && !extendedOperations.isEmpty()) {
return extendedOperations.contains(extendedOperation);
}
return false;
}
Cancel Extended OperationRFC 3909, LDAP Cancel Operation, defines
an extended operation that lets you cancel an operation in progress and get
an indication of the outcome.This cancel extended requests uses the request ID of operation you
want to cancel, and so therefore works with asynchronous searches and
updates.
TODO
OpenDJ directory server supports the cancel operation.TODOPassword Modify Extended OperationRFC 3062, LDAP Password Modify Extended
Operation, defines an extended operation for modifying
user passwords that does not depend on the authentication identity, nor on
the way passwords are stored.
if (isSupported(PasswordModifyExtendedRequest.OID)) {
final String userIdentity = "u:scarter";
final char[] oldPassword = "sprain".toCharArray();
final char[] newPassword = "secret12".toCharArray();
final PasswordModifyExtendedRequest request =
Requests.newPasswordModifyExtendedRequest()
.setUserIdentity(userIdentity)
.setOldPassword(oldPassword)
.setNewPassword(newPassword);
final PasswordModifyExtendedResult result =
connection.extendedRequest(request);
if (result.isSuccess()) {
System.out.println("Changed password for " + userIdentity);
} else {
System.err.println(result.getDiagnosticMessage());
}
}
OpenDJ directory server supports the password modify operation.Changed password for u:scarterStart TLS Extended OperationUse Start TLS when setting up your connection to protect what your
application sends to and receives from the directory server. For an example,
read the section on Start TLS &
SSL Authentication.Who am I? Extended OperationRFC 4532, LDAP "Who am I?" Operation,
defines an extended operation that lets your application determine the
current authorization ID.
if (isSupported(WhoAmIExtendedRequest.OID)) {
final String name = "uid=bjensen,ou=People,dc=example,dc=com";
final char[] password = "hifalutin".toCharArray();
final Result result = connection.bind(name, password);
if (result.isSuccess()) {
final WhoAmIExtendedRequest request =
Requests.newWhoAmIExtendedRequest();
final WhoAmIExtendedResult extResult =
connection.extendedRequest(request);
if (extResult.isSuccess()) {
System.out.println("Authz ID: " + extResult.getAuthorizationID());
}
}
}
OpenDJ directory server supports the "Who am I?" operation.Authz ID: dn:uid=bjensen,ou=People,dc=example,dc=comCustom Extended OperationsTODO