I wrote code to add object class in LDAP schema. It works fine with SunOne directory service. But it gives "InvalidAttributeValueException" in case of OpenLdap and gives "OperationNotSupportedException" in case of IBM TDS. Does anyone know a generalised code for these 3 directory services.
my code:
package demo;
import javax.naming.; import javax.naming.directory.; import java.util.Hashtable;
public class AddObjectClass {
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://localhost:389");
env.put(Context.SECURITY_AUTHENTICATION,"simple");
env.put(Context.SECURITY_PRINCIPAL, "cn=Directory Manager");
env.put(Context.SECURITY_CREDENTIALS,"cantsay");
Attributes attrs = new BasicAttributes(true); // ignore case
attrs.put("NUMERICOID", "1.3.6.1.4.1.42.2.27.4.2.3.1.1.45");
attrs.put("NAME", "myObjectClass");
attrs.put("DESC", "for JNDI example only");
attrs.put("SUP", "top");
attrs.put("STRUCTURAL", "true");
Attribute must = new BasicAttribute("MUST", "cn");
must.add("objectclass");
attrs.put(must);
try
{
DirContext ctx = new InitialDirContext(env);
DirContext schema = ctx.getSchema("");
schema.createSubcontext("ClassDefinition/myObjectClass", attrs);
System.out.println("added");
ctx.close();
}catch(Exception e){e.printStackTrace();}
}
}