go to  ForumEasy.com   
LdapPro
Home » Archive » Message


[Email To Friend][View in Live Context][prev topic « prev post | next post » next topic]
  javax.naming.ContextNotEmptyException
 
Subject: javax.naming.ContextNotEmptyException
Author: SteveHB
In response to: Code Example
Posted on: 04/04/2007 05:49:50 PM

If you try to delete a subtree without TreeDeleteControl, most likely you will get somethings like:

AD
javax.naming.ContextNotEmptyException: [LDAP: error code 66 - 0000208C: UpdErr: DSID-030A0491, problem 6003 (CANT_ON_NON_LEAF), data 0
]; remaining name 'ou=Sales,cn=Users,DC=mydomain,DC=com'
at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3040)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2951)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2758)
at com.sun.jndi.ldap.LdapCtx.c_destroySubcontext(LdapCtx.java:830)
at com.sun.jndi.toolkit.ctx.ComponentContext.p_destroySubcontext(ComponentContext.java:653)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(PartialCompositeContext.java:336)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(PartialCompositeContext.java:326)
at javax.naming.InitialContext.destroySubcontext(InitialContext.java:415)


SunOne
javax.naming.ContextNotEmptyException: [LDAP: error code 66 - Not Allowed On Non-leaf]; remaining name 'ou=Sales,cn=Users,DC=mydomain,DC=com'
at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:3040)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2951)
at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2758)
at com.sun.jndi.ldap.LdapCtx.c_destroySubcontext(LdapCtx.java:830)
at com.sun.jndi.toolkit.ctx.ComponentContext.p_destroySubcontext(ComponentContext.java:653)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(PartialCompositeContext.java:336)
at com.sun.jndi.toolkit.ctx.PartialCompositeContext.destroySubcontext(PartialCompositeContext.java:326)
at javax.naming.InitialContext.destroySubcontext(InitialContext.java:415)


 

> On 04/04/2007 05:39:11 PM SteveHB wrote:


/**
 *  A code example of Tree Delete Control JNDI Client for AD
 *  Note: This example has been tested to work with Active Directory 2003
 */
import javax.naming.*;
import javax.naming.directory.*;
import javax.naming.ldap.*;
import java.util.Hashtable;

public class TreeDeleteControlJndiClient 
{		   
  static final String  TREE_DELETE_CONTROL_OID = "1.2.840.113556.1.4.805";

  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://myAactiveDirectory:389");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "testUser@myDomain.com");
    env.put(Context.SECURITY_CREDENTIALS, "password");
  	
    try{
  	
      // Create the initial directory context
      LdapContext ctx = new InitialLdapContext(env, null);
		
      System.out.println("Initial binding done!");
      
      /* Query the server to see if the Tree Delete Control is supported */ 
      if (!isTreeDeleteControlSupported(ctx)){
        System.out.println("The server does not support Tree Delete Control.");
        System.exit(1);
      }
      
      /* Activate the control */
      Control[] tdCtls = new Control[]{new TreeDeleteControl()};
      ctx.setRequestControls(tdCtls);
      String delete_dn = "ou=Sales,cn=Users,dc=mydomain,dc=com";
      ctx.destroySubcontext(delete_dn);
    	
      // Close the LDAP association
      ctx.close();
	    
    }catch (Exception e){
    	e.printStackTrace();
    }
  }

  /**
   * Is Tree Delete Control supported?
   *
   * Query the rootDSE object to find out if the Tree Delete Control
   * is supported.
   */
  static boolean isTreeDeleteControlSupported(LdapContext ctx) 
	throws NamingException
  {
    SearchControls ctl = new SearchControls();
    ctl.setReturningAttributes(new String[]{"supportedControl"});
    ctl.setSearchScope(SearchControls.OBJECT_SCOPE);

    /* search for the rootDSE object */
    NamingEnumeration results = ctx.search("", "(objectClass=*)", ctl);

    while(results.hasMore()){
      SearchResult entry = (SearchResult)results.next();
      NamingEnumeration attrs = entry.getAttributes().getAll();
      while (attrs.hasMore()){
      	Attribute attr = (Attribute)attrs.next();
      	NamingEnumeration vals = attr.getAll();
        while (vals.hasMore()){
          String value = (String) vals.next();
          if (value.equals(TREE_DELETE_CONTROL_OID))
            return true;
        }
      }
    }
    return false;
  }
}


class TreeDeleteControl implements Control 
{
  public byte[] getEncodedValue() {
    return new byte[] {};
  }

  public String getID() {
    return "1.2.840.113556.1.4.805";
  }

  public boolean isCritical() {
    return true;
  }
}





References:

 


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