|
Persistent Search Control JNDI Client Sample |
|
Subject: Persistent Search Control JNDI Client Sample
Author: SteveHB
In response to: LDAP Persistent Search Control Protocol -- Response
Posted on: 03/15/2010 07:51:35 PM
A JNDI client sample to demonstrate how to use PersistentSearchControl:
http://www.forumeasy.com/forums/thread.jsp?tid=117381072609&fid=ldapprof2&highlight=LDAP+Persistent+Search+Control+JNDI+Client
>
> On 09/14/2006 09:10:41 PM SteveHB wrote:
Upon receiving the above Persistent Search Control, a server that supports it MUST process this as a standard LDAPv3 search with the following exceptions:
The server MUST NOT return a SearchResultDone message. Instead, the search operation MUST be kept active until it is abandoned by the client or until the client unbinds.
If changesOnly is TRUE, the server MUST NOT return any existing entries that match the search criteria. Entries are only returned when they are changed (added, modified, deleted, or subject to a modifyDN operation).
As changes are made to the server, the effected entries MUST be returned to the client if they match the standard search criteria and if the operation that caused the change is included in the changeTypes field.
If returnECs is TRUE, the server MUST return an Entry Change Notification control with each entry returned as the result of changes.
Entry Change Notification control
This control provides additional information about the change the caused a particular entry to be returned as the result of a persistent search. If the client set the returnECs boolean to TRUE in the PersistentSearch control, servers MUST include an EntryChangeNotification control in the Controls portion of each SearchResultEntry that is returned due to an entry being added, deleted, or modified.
EntryChangeNotificationControl::= SEQUENCE {
controlType 2.16.840.1.113730.3.4.7,
criticality BOOLEAN DEFAULT FALSE,
controlValue entryChangeNotificationControlValue
}
The entryChangeNotificationControlValue is an OCTET STRING wrapping the BER-encoded version of the following SEQUENCE:
entryChangeNotificationControlValue::= SEQUENCE {
changeType ENUMERATED {
add (1),
delete (2),
modify (4),
modDN (8)
},
previousDN LDAPDN OPTIONAL, -- modifyDN ops. only
changeNumber INTEGER OPTIONAL -- if supported
}
previousDN is present only for modifyDN operations and gives the DN of the entry before it was renamed and/or moved. Servers MUST include this optional field only when returning change notifications as a result of modifyDN operations.
changeNumber is the change number assigned by a server for the change. If a server supports an LDAP change log it SHOULD include this field.
References:
|
|
|
|