I have a Identity Server version 5.3.0 installed on my server and activated SCIM 2.0 user provisioning based on the documentation provided. Active directory is set as the primary user store here. The identity server created the admin user and group successfully in the Active Directory without any errors, however, my problem is when I want to create more users via the UI of Identity server I get this error:
[LDAP: error code 16 - 00000057: LdapErr: DSID-0C091027, comment: Error in attribute conversion operation, data 0, v3839 ]; remaining name 'cn=*****'
And when Trying to create the user with SCIM 2.0 with curl I get the this error:
{"schemas":"urn:ietf:params:scim:api:messages:2.0:Error","detail":"Error in adding the user: * to the user store. Error while adding the user to the Active Directory for user : *","status":"500"}
My claims are set as follows:
Claims for urn:ietf:params:scim:schemas:core:2.0--->
urn:ietf:params:scim:schemas:core:2.0:meta.resourceType
urn:ietf:params:scim:schemas:core:2.0:meta.lastModified
urn:ietf:params:scim:schemas:core:2.0:meta.created
urn:ietf:params:scim:schemas:core:2.0:meta.location
urn:ietf:params:scim:schemas:core:2.0:id
urn:ietf:params:scim:schemas:core:2.0:userName
This is configured based on the https://docs.wso2.com/display/IS410/SCIM+User+Provisioning+With+IS+Having+Active+Directory+User+Store
I just applied it to the urn:ietf:params:scim:schemas:core:2.0 and not the urn:scim:schemas:core:1.0 because this is SCIM 2.0 Version and not version 1.0
P.S . I am using Active Directory within Server 2016 with ldapS.
Does anybody have any any ideas about what causing this to happen?