cancel
Showing results for 
Search instead for 
Did you mean: 

Special characters in authentication (distinguished name)

brgsousa
Champ in-the-making
Champ in-the-making
How can I escape this special character in the active directory synchronization request?

ldap.synchronization.personType=user
ldap.synchronization.personQuery=(&(|(memberof=CN=<strong>Caça</strong>,OU=Grupos,DC=intranet,DC=domain,DC=com)(memberof=CN=GRUDS,OU=Grupos,DC=intranet,DC=domain,DC=com))(objectclass\=user)(userAccountControl\:1.2.840.113556.1.4.803\:\=512))
ldap.synchronization.personDifferentialQuery=(&(|(memberof=CN=<strong>Caça</strong>,OU=Grupos,DC=intranet,DC=domain,DC=com)(memberof=CN=GRUDS,OU=Grupos,DC=intranet,DC=domain,DC=com))(objectclass\=user)(userAccountControl\:1.2.840.113556.1.4.803\:\=512)(!(modifyTimestamp<\={0})))
ldap.synchronization.groupQuery=(objectclass\=group)
ldap.synchronization.groupDifferentialQuery=(&(objectclass\=group)(!(modifyTimestamp<\={0})))
ldap.synchronization.groupSearchBase=DC=intranet,DC=domain,DC=com
2 REPLIES 2

mrksjs
Champ on-the-rise
Champ on-the-rise
try to enter the character as unicode:

\u00C7 = Ç
or
\u00E7 = ç

brgsousa
Champ in-the-making
Champ in-the-making
Thanks! It worked flawlessly!