Hi All,
we’ve got a Servet where users Login and get validated trough Directory Assitance using LDAP.
We have made no changes in any configuration nor ACL nor LDAP Scheme etc. I also have saved trough all relevant documents as I’ve found a hint here in some other thread. But nothing helps. Any changes user wants to make are just beeing ignored. But creating a new user trough same backend works fine.
Here are some pices of our Code
Creating Users:
getLdapContext().createSubcontext(“cn=” + userName + “, ou=” + getOuFromStatus(status) + “, o=” + _ldapOrganization, attr);
Changing ou:
getLdapContext().rename(“cn=” + safeUsername + “, ou=” + srcname + “, o=” + _ldapOrganization, “cn=” + safeUsername + “, ou=” + getOuFromStatus(status) + “, o=” + _ldapOrganization);
Modifying Attributes:
getLdapContext().modifyAttributes(“cn=” + userName + “, ou=” + getOuFromStatus(status) + “, o=” + _ldapOrganization, DirContext.REPLACE_ATTRIBUTE, attrToUpdate);
Everything worked fine on R6.0.3.
Am I missing something?
Best wishes
Ben