How to get structure of Active Directory through LDAP

R

Ronen Diment

Hi!

I'm trying to connect to an active directory through LDAP , on java client.

I dont know the structure of the active directory so I dont know what
parameters I Should pass to getAttributes().

Do you know how to get the strcuture(List of all the elements) of the Active
Directory?

The code:

Hashtable env = new Hashtable(11);

env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");

env.put(Context.PROVIDER_URL, "ldap://ldap.public.com:389");

try { // Create the initial directory context

DirContext ctx = new InitialDirContext(env);

// Dont know the structure - What parameters to supply??

Attributes attrs = ctx.getAttributes("DC=myOrg,DC=int");

Thanks,

Ron
 
O

Olaf Lenzmann

Ronen Diment said:
Hi!

I'm trying to connect to an active directory through LDAP , on java client.

I dont know the structure of the active directory so I dont know what
parameters I Should pass to getAttributes().

Do you know how to get the strcuture(List of all the elements) of the Active
Directory?

The code:

Hashtable env = new Hashtable(11);

env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");

env.put(Context.PROVIDER_URL, "ldap://ldap.public.com:389");

try { // Create the initial directory context

DirContext ctx = new InitialDirContext(env);

// Dont know the structure - What parameters to supply??

Attributes attrs = ctx.getAttributes("DC=myOrg,DC=int");

Thanks,

Ron

Get an LDAP browser (e.g. http://www.iit.edu/~gawojar/ldap/ ) and use
it to inspect your AD; afaik, the one linked above provides reasonable
defaults to connect.

Olaf
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top