LDAP Java:我如何知道我的活动目录名称

时间:2013-02-25 19:44:08

标签: java eclipse attributes active-directory

如何知道我的活动目录的所有属性?

我看到像“ou = People”的例子,但我不知道如何访问我公司特定的“People”这个名字。我没有访问LDAP(或者我不知道怎么做)所以我不知道我想要放什么。

DirContext ctx = null;

             Hashtable<String, Object> env = new Hashtable<String, Object>();
             env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
             env.put(Context.PROVIDER_URL, "ldap://"+serverAddress+":389");

             env.put(Context.SECURITY_AUTHENTICATION, "simple");
             env.put(Context.SECURITY_PRINCIPAL, DOMAIN+username);
             env.put(Context.SECURITY_CREDENTIALS, password);

            try {
                 ctx = new InitialDirContext(env);
                Attributes matchAttrs = new BasicAttributes(true); // ignore attribute name case

             matchAttrs.put(new BasicAttribute("mail", "XXXXXX@XXXX.com"));
             Attributes attrs = ctx.getAttributes("");

             // Search for objects that have those matching attributes
             NamingEnumeration<SearchResult> answer = ctx.search("ou=Users", matchAttrs);

                 while (answer.hasMore()) {
                      SearchResult sr = (SearchResult)answer.next();
                      System.out.println(">>>" + sr.getName());
                 }

我有错误:Failed to bind to LDAP [LDAP: error code 1 - 000020D6: SvcErr: DSID-03100754, problem 5012 (DIR_ERROR), data 0 remaining name 'ou=Users'

如何知道公司在ou=....

之后使用的名称

非常感谢!

1 个答案:

答案 0 :(得分:3)

您可以使用ldap浏览器来探索ldap。 (我通常使用softerra Ldap管理员) 您需要连接的所有信息都在代码的第一行(地址,端口等......)