- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
LDAP: error code 49 - 80090308: LdapErr: DSID-0C09042F, comment: AcceptSecurityContext error, data 52e, v2580
我知道“52e”代码是用户名有效但密码无效的情况。我使用相同的用户名和密码来根据 Active Directory 验证用户及其工作正常。
这是我的java代码:
String userName = "user_test";
String password = "*******";
String base ="DC=test,DC=local";
String dn = "cn="+ userName + "," + "CN=Users," + base;
try {
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PRINCIPAL, dn);
env.put(Context.SECURITY_CREDENTIALS, password);
env.put(Context.PROVIDER_URL, "ldap://*****.test.local:389");
System.out.println("Attempting to Connect...");
ctx = new InitialLdapContext(env, null);
System.out.println("Connection Successful.");
} catch (NamingException nex) {
System.out.println("LDAP Connection: FAILED");
nex.printStackTrace();
}
return ctx;
}
我不知道为什么会出现此错误。有人可以帮忙吗?
最佳答案
如果您使用简单的权限认证,您应该使用短用户名形式
user_test@test.local
我检查过,在这种情况下身份验证正在工作。在 dn 形式中我得到了完全相同的错误
javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 52e, v1db1
关于java - LDAP:错误代码 49 - 80090308:LdapErr:DSID-0C09042F,注释:AcceptSecurityContext 错误,数据 52e,v2580,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56325782/
我使用 Java 的 LdapContext 向一台 AD 服务器进行身份验证。它在Windows7家庭普通版、企业版、专业版上运行良好。但是当客户端在Windows7旗舰版和Vista旗舰版上运行时
我正在尝试将 LDAP 客户端绑定(bind)到 Windows AD LDAP 服务器,但我在数据包捕获中看到了这个错误: resultCode: invalidCredentials (49)80
尝试运行上面的代码时,我收到 javax.naming.OperationNotSupportedException消息:[LDAP: error code 12 - 00000057: LdapEr
我需要阅读 Active Directory、搜索用户和创建用户功能。 我可以在 C# 中使用 DirectoryEntry,而域只是物理服务器。 在我的生产环境中,我有两个具有相同域名的物理域服务器
我有一个 C# 代码来连接到 LDAP 服务器,它工作得很好 下面给出了工作的 C# 代码 user = "myname@myorg.com"; string pwd
LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 5
LDAP: error code 49 - 80090308: LdapErr: DSID-0C09042F, comment: AcceptSecurityContext error, data 5
LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903A9, comment: AcceptSecurityContext error, data 5
我在日志中收到以下错误。尽管我们提供了正确的用户名和密码来登录网站。 LDAP 出现此错误。 : [LDAP: error code 49 - 80090308: LdapErr: DSID-0C09
当尝试 ldapmodify 通过 SSL(636) 设置 unicode 密码(使用正确的编码)时,操作失败并且 Active Directory 返回以下错误代码: 0000052D: SvcEr
我是一名优秀的程序员,十分优秀!