Skip to Main Content

Security Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

LDAP: error code 53 - 0000055E: SvcErr: DSID-031A0FC0, problem 5003

Shashi KiranSep 10 2012 — edited Sep 25 2012
Hi,

I Am trying to add an User(whose Primary Group is'Domian users') to a Group called "CN=DS_Disabled_IG,OU=Common,OU=Access Management,OU=Security Groups,OU=BAND,dc=something,DC=com" by using the below code:
LdapContext ctx = null;
ctx = new InitialLdapContext(env, null);
String groupDn = "CN=DS_Disabled_IG,OU=Common,OU=Access Management,etc....";
String completeDnOfUser = "This will be the current DN of the user";
ModificationItem[] mods = new ModificationItem[1];
mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE,
new BasicAttribute("member", completeDnOfUser));
ctx.modifyAttributes(groupDn, mods); ------- line A


At 'line A' exception is being throwed as below:


In Exception catch block [LDAP: error code 53 - 0000055E: SvcErr: DSID-031A0FC0, problem 5003 (WILL_NOT_PERFORM), data 0
javax.naming.OperationNotSupportedException: [LDAP: error code 53 - 0000055E: SvcErr: DSID-031A0FC0, problem 5003 (WILL_NOT_PERFORM), data 0
remaining name 'CN=DS_Disabled_IG,OU=Common,OU=Access Mana etc......'
at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3114)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2987)
at goes on ......
But the same code is working for me in Lower environment but not in one of the upper environment.
It would of great help, if anyone can suggest solution on this.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 23 2012
Added on Sep 10 2012
4 comments
3,093 views