我发现这个简单的例子用java如何连接到LDAP服务器:
import javax.naming.*;
import javax.naming.directory.*;
import java.util.Hashtable;
/**
* Demonstrates how to create an initial context to an LDAP server
* using SSL. For this example to work, JSSE must be installed and
* configured, and the issuer of the LDAP server's certificate must
* be in the JSSE trust store.
*
* usage: java Ssl
*/
class Ssl {
public static void main(String[] args) {
// Set up environment for creating initial context
Hashtable env = new Hashtable(11);
env.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, "ldap://localhost:636/o=JNDITutorial");
// Specify SSL
env.put(Context.SECURITY_PROTOCOL, "ssl");
// Authenticate as S. User and password "mysecret"
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, "cn=S. User, ou=NewHires, o=JNDITutorial");
env.put(Context.SECURITY_CREDENTIALS, "mysecret");
try {
// Create initial context
DirContext ctx = new InitialDirContext(env);
System.out.println(ctx.lookup("ou=NewHires"));
// ... do something useful with ctx
// Close the context when we're done
ctx.close();
} catch (NamingException e) {
e.printStackTrace();
}
}
}
我连接时有没有办法获取LDAP服务器和版本?
答案 0 :(得分:1)
获取rootDSE的属性。根据服务器的不同,此信息可能位于此处。
答案 1 :(得分:1)
尝试查看http://ldapwiki.willeke.com/wiki/Determine%20LDAP%20Server%20Vendor,我们提供了一些我们发现通常可行的方法。没有一种方法适用于所有LDAP服务器实现。
此外,LDAP版本太模糊了。你想要的是LDAPSupported Version吗?或者是vendorVersion的LDAP?
此外,除非您使用具有适当权限的帐户绑定,否则某些rootDSE条目可能不可用。