Changing attributes in GroupWise via ldap
Hoping this is the right place for this question...
I'm using the Novell.Directory.Ldap component to update attributes on Ldap entries. I manage to update attributes in my code and if I open the entry in ConsoleOne I can see that the change has taken effect. I would want this change to propagate to the address book in Groupwise, but it doesn't; only when I change something in ConsoleOne the changes (including the one I did from the code) propagates to GroupWise.
I have tried to find some "entry updated" attribute or similar, without luck. What is it that ConsoleOne sets that I don't? How can I make my changes propagate all the way to GroupWise?
Here is a small code sample (leaving out setting up the connection and finding the entry parts):
LdapAttribute ldapAttribute = new LdapAttribute( "description", "New description from my program");
LdapModification[] arrldapMod=new LdapModification[1];
LdapModification ldapMod= new LdapModification(LdapModification.REPLACE,ldapAttribute);
arrldapMod[0]=ldapMod;
ldapConnection.Modify(ldapEntry.DN,ldapMod);
Any ideas will be greatly appreciated!
Thanks
/EnkelIk

