Ldap error code 32 while adding user to ldap(将用户添加到 ldap 时出现 ldap 错误代码 32)
问题描述
我需要向我的 ldap 添加一个新用户条目.以下是我的代码:
I need to add a new user entry to my ldap. Following is my code:
javax.naming.Name name = new DistinguishedName("cn=" + userName +",ou=Users,dc=wso2,dc=org");
Attribute objectClass = new BasicAttribute("objectClass");
{
objectClass.add("top");
objectClass.add("inetOrgPerson");
objectClass.add("person");
objectClass.add("organizationalPerson");
}
Attributes userAttributes = new BasicAttributes();
userAttributes.put(objectClass);
userAttributes.put("cn", userName);
userAttributes.put("sn", "abctest");
userAttributes.put(ATTRIBUTE_USER_PASSWORD, password);
LdapTemplate ldapTemplate = (LdapTemplate) SpringBeanFactory
.getBean("ldapTemplate");
ldapTemplate.bind(name, null, userAttributes);
虽然在执行这段代码时出现以下异常:
Although when this piece of code is executed I get the following exception:
org.apache.cxf.interceptor.Fault: [LDAP: error code 32 - No Such Object];
nested exception is javax.naming.NameNotFoundException:
[LDAP: error code 32 - No Such Object]; remaining name 'cn=myname,ou=Users,dc=wso2,dc=org'
我正在遵循 http:///kaustuvmaji.blogspot.in/2014/12/simple-example-of-spring-ldap.html 用于代码.有人可以帮助我了解此错误的根本原因或正确的代码.
I am following the example specified at http://kaustuvmaji.blogspot.in/2014/12/simple-example-of-spring-ldap.html for the code. Can someone help me in understanding the root cause for this error or the right code.
推荐答案
这里的问题是路径 ou=Users,dc=wso2,dc=org
在你的 LDAP 树中不存在,所以你不能在那个路径上创建一个孩子.
The problem here is that the path ou=Users,dc=wso2,dc=org
doesn't exist in your LDAP tree, so you cannot create a child at that path.
如果您为 ContextSource
指定了基本路径,代码中的所有 DN 都应省略该基本路径,因为所有路径都将相对于指定的基本路径.
If you specified a base path for your ContextSource
that should be omitted from all DNs in code, as all paths will be relative to the specified base.
这篇关于将用户添加到 ldap 时出现 ldap 错误代码 32的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将用户添加到 ldap 时出现 ldap 错误代码 32
基础教程推荐
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 降序排序:Java Map 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01