Is it possible to check if a users atrributes have changed when you query an LDAP. What I want to do is, everytime i run my program i want it to search the ldap and if two attribiutes change, IE from 3 to 0, and Active to Withdrawn, then write those users to a file.
Is this possible?
You can check the operational attribute
modifyTimestamp. That tells you when anything changed in the entry. So you could formulate a search filter something like(&(modifyTimestamp > xxxx)(|(IE=0)(yyy=Withdrawn)))), and remember the last time you ran the search for the next value ofxxxx.