You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I'm encountering a problem with @entry's base attribute for Active Directory groups and ODM :
@Entry(objectClasses = {"top", "group"}, base = "OU=***,OU=***,DC=***,DC=***")
nested exception is javax.naming.NameNotFoundException: [LDAP: error code 32 - 0000208D: NameErr: DSID-03100220, problem 2001 (NO_OBJECT), data 0, best match of: '' ]; remaining name '/'
It works perfectly with "person" objectClass in the same path :
@Entry(objectClasses = {"top", "person"}, base = "OU=***,OU=***,DC=***,DC=***")
Groups are working after remove of "base" attribute and put the base path in the properties :
spring.ldap.base=DC=***,DC=***
But in the future I need to work with different bases depending of the objectClass.
Thank you
Regards
The text was updated successfully, but these errors were encountered:
Hello,
I'm encountering a problem with @entry's base attribute for Active Directory groups and ODM :
@Entry(objectClasses = {"top", "group"}, base = "OU=***,OU=***,DC=***,DC=***")
nested exception is javax.naming.NameNotFoundException: [LDAP: error code 32 - 0000208D: NameErr: DSID-03100220, problem 2001 (NO_OBJECT), data 0, best match of: '' ]; remaining name '/'
It works perfectly with "person" objectClass in the same path :
@Entry(objectClasses = {"top", "person"}, base = "OU=***,OU=***,DC=***,DC=***")
Groups are working after remove of "base" attribute and put the base path in the properties :
spring.ldap.base=DC=***,DC=***
But in the future I need to work with different bases depending of the objectClass.
Thank you
Regards
The text was updated successfully, but these errors were encountered: