Associate Ldap user to a group with Java

女生的网名这么多〃 提交于 2019-11-30 20:55:58

If you're using OpenLDAP the memberOf attribute is maintained automatically by the memberOf overlay, and your application shouldn't write it at all. What you should be doing is adding the DN of the user to the uniqueMember or roleOccupant etc. attribute of the group he is joining. Then its DN will magically appear in his memberOf attribute.

Most probably your DN is wrong, because it seems you've specified one extra Organizational Unit instead of Domain Component:

"CN=Managers,OU=<system_name>,OU=Users,OU=<server>,DC=com"

should be:

"cn=Managers,ou=<system_name>,ou=Users,dc=<server>,dc=com"

In LDAP the Directory Structure starts with 2 domain components, which are a reversed company domain name (by convention).

In order for your code to work, you have to take into account the following:

  • there's a schema "Person" that's loaded in your LDAP Server

  • there's an attribute "MemberOf" defined in your "Person" schema

  • "MemberOf" requires full DN as entry

I would also encourage you to take a look at UnboundID LDAP SDK.

Hope that helps.

The value of the memberOf attribute is wrong. The memberOf attribute is probably a distinguished name. LDAP clients should consult the schema (the base DN of which might be available in the root DSE) when in doubt about the syntax, ordering, or matching rules of an attribute.

I had the same problem. Check the value type of this attribute using any client of ldap (for example: Apache Directory Studio). If you try to replace attribute which type is String with int value it will thrown this error.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!