7
カスタムJavaアプリケーションでActive Directoryサーバーを使用して認証しようとしていますが、何らかの理由で正常に動作しません。なぜ誰がこれを見ることができますか?ここに私の方法は以下の通りです:Java LDAP認証の問題
結果private boolean authenticate(String serverName, String userId, String password) throws NamingException {
DirContext ctx = null;
Hashtable env = new Hashtable(11);
boolean b = false;
try {
env.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, "ldap://servername.org:389");
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, "uid="+ userId +",ou=All Users,dc=site,dc=org");
env.put(Context.SECURITY_CREDENTIALS, password);
System.out.println("before context");
// If there isn't a naming exception then the user is authenticated. Return true
ctx = new InitialDirContext(env);
//The user is authenticated.
b = true;
} catch (NamingException e) {
System.out.println("the user is not authenticated return false");
b = false;
}finally{
if(ctx != null)
ctx.close();
}
return b;
}
:
[12/14/11 16:27:47:746 CST] 0000001f SystemErr R
javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C090334, comment: AcceptSecurityContext error, data 52e, vece
で
を交換?あなたはスタックトレースを投稿できますか? –
認証エラーであるldapエラーコード49が表示されます。しかし、私が提供している資格情報は正しいです。私はそれで私のWindowsマシンと他のサーバーにログインすることができます。 – bschupbach
あなたのLDAPに暗号化が必要ですか?共有することが重要な特定の接続パラメータを使用していますか?そうでなければ、それはちょうど推測です。 – hovanessyan