Subject: Re: LDAP Persistent Search Control -- JNDI Client for AD
Author: SteveHB
In response to: LDAP Persistent Search Control -- JNDI Client for AD
Posted on: 10/19/2007 07:43:43 PM
Hi MHM,
From each response you received from server, you should have inside a changed entry and an Entry Change Notification control:
entryChangeNotificationControlValue::= SEQUENCE {
changeType ENUMERATED {
add (1),
delete (2),
modify (4),
modDN (8)
},
previousDN LDAPDN OPTIONAL, -- modifyDN ops. only
changeNumber INTEGER OPTIONAL -- if supported
}
which tells what had happened as to the changed entry.
For
add,
delete or
modDN, it's quite straight forward to know what change was made.
For
modify, however, you have to compare the changed entry with the old one to figure out the difference.
Regards,
Steve
>
> On 10/18/2007 10:04:19 AM
mhmldappro wrote:
How can I know what change was made in each object ?
MHM
References: