我想使用 Java 针对 VDS(虚拟目录服务器)对用户进行身份验证。
- VDS 与 LDAP 有何不同?还是 VDS 也在使用 LDAP 协议?
请帮助提供任何用于针对 VDS 进行身份验证的示例 Java 代码
针对 LDAP 进行身份验证的示例代码如下
String userName = "John P R-Asst General Manager";
String passWord = "asdfgh123";
String base ="OU=SOU,DC=example,DC=com";
String dn = "cn=" + userName + "," + base;
String ldapURL = "ldap://mdsdc3.example.com:389";
authEnv.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
authEnv.put(Context.PROVIDER_URL, ldapURL);
authEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
authEnv.put(Context.SECURITY_PRINCIPAL, dn);
authEnv.put(Context.SECURITY_CREDENTIALS, password);
try {
DirContext authContext = new InitialDirContext(authEnv);
return true;
} catch (NamingException namEx) {
return false;
}
要针对 VDS 进行身份验证,需要完整的 dn。因为根据专家的说法,只需将用户名和密码发送到 VDS。它将自动找到其 DN 并进行身份验证。如果有人提供有关 ldap 和 vds 的参考资料,将不胜感激