Active Directoryドメインと信頼を使用して、domainA.comにdomainB.comという名前の信頼されたドメインを追加しました。このコードを使用してActive Directoryを認証すると、「LDAP:エラーコード49-80090308:LdapErr:DSID-0C090334、コメント」というエラーが表示されます。 :AcceptSecurityContextエラー、データ525、vece "
Hashtable<String, String> env = new Hashtable<String, String>();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, "ldap://domainA.com:389/");
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, "domainB\\userB");
env.put(Context.SECURITY_CREDENTIALS, "*******");
env.put(Context.REFERRAL, "follow");
InitialLdapContext ctx = new InitialLdapContext(env, null); //this line will cause error
信頼されたドメインユーザーを使用してADに対して認証するにはどうすればよいですか?ご協力ありがとうございました