go to  ForumEasy.com   
LdapPro
Home » Archive » Message


[Email To Friend][View in Live Context][prev topic « prev post | next post » next topic]
  Error 1 -- AD doesn't support 'deleteoldrdn'
 
Subject: Error 1 -- AD doesn't support 'deleteoldrdn'
Author: eLDAP
In response to: A JNDI CLient
Posted on: 12/04/2006 07:33:12 PM

The above example works fine for both AD and SunOne. When 'deleteoldrdn' is set as 'false':

        env.put("java.naming.ldap.deleteRDN", "false");  

which means the old rdn is intended to be kept somewhere as attribute in the new entry, it works only for SunOne. For AD, you will get error messages like the following:

javax.naming.OperationNotSupportedException: [LDAP: error code 53 - 00000057: LdapErr: DSID-0C0909A4, comment: Old RDN must be deleted, data 0, vece]
remaining name 'cn=John Smith,ou=Sales,ou=People'
at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2728)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2601)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2411)
at com.sun.jndi.ldap.LdapCtx.c_rename(LdapCtx.java:584)
at com.sun.jndi.toolkit.ctx.ComponentContext.p_rename(ComponentContext.java:692)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.rename(PartialCompositeContext.java:248)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.rename(PartialCompositeContext.java:239)
at javax.naming.InitialContext.rename(InitialContext.java:382)


 

> On 12/04/2006 07:17:10 PM eLDAP wrote:

Here is a programming example to show how to change the leftmost component of the name of an entry in the directory, or to move a subtree to a new location in the directory.

/**
 * 
 * ModifyRDN .java
 * Sample code to demostrate how ModifyRDN/ModifyDN works.
 * 
 */
 
import javax.naming.*;
import javax.naming.directory.*;

import java.util.Hashtable;

public class ModifyRDN 
{
    public static void main(String[] args) 
    {
	Hashtable env = new Hashtable();
	env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");

	env.put(Context.PROVIDER_URL, "ldap://myLdapServer:389/dc=myDomain,dc=com");
        env.put(Context.SECURITY_AUTHENTICATION, "simple");
        env.put(Context.SECURITY_PRINCIPAL, "cn=directory manager");
        env.put(Context.SECURITY_CREDENTIALS, "password");

        /*
          Whether the old RDN attribute values are to be retained 
          as attributes of the entry, or deleted from the entry
        */
        env.put("java.naming.ldap.deleteRDN", "true");  // default is 'true'
        
	try {
	    /* Create the initial context */
	    DirContext ctx = new InitialDirContext(env);

            ctx.rename("cn=John Smith,ou=Sales,ou=People", 
                       "cn=John Cougar Smith,ou=Sales,ou=People");

	    /* Close the context when it's done */
	    ctx.close();
	} catch (Exception e) {
	    e.printStackTrace();
	}
    }
}





References:

 


 
Powered by ForumEasy © 2002-2022, All Rights Reserved. | Privacy Policy | Terms of Use
 
Get your own forum today. It's easy and free.