Reputation: 45
For a client, we have to connect a WSO2IS 5.10.0 to an Active Directory. For that we have created a secondary user Store with this configuration:
WSO2IS can connect to Active Directory as we can retrieve users and roles. Before doing any claim mapping we have tried to edit and create user without any problems. And then we have mapped some claims to retrieve more information from Active Directory. And here come our problems:
This two problem gives us this error :
Caused by: javax.naming.directory.NoSuchAttributeException: [LDAP: error code 16 - 00000057: LdapErr: DSID-0C090C45, comment: Error in attribute conversion operation, data 0, v1db1
Things that we have tried:
But all things that we have tried are not helping and we are stuck.
Any help would be hugely appreciated. Thank you for any suggestions.
As asked, this is the AD attribut we have mapped :
Upvotes: 0
Views: 577
Reputation: 1139
Here the issue is LDAP_NO_SUCH_ATTRIBUTE
returned from the AD.
http://wso2.org/claim
dialect.tag
to checkout, you can find the kernel version
of your identity server
version from this release matrix.ActiveDirectoryUserStoreManager.doAddUser()
and ActiveDirectoryUserStoreManager.doSetUserClaimValue()
methods and start from there.P.S. You can also check if the carbon log's stack trace contains any clue of the failing attribute or the respective claim, so that you can check validate it.
Upvotes: 1