I have a user who needs to create accounts where "/" will occur in the
common
name. If we just put the name in normally we get an LDAP error:
cn:Test Name s/o (Testname)
LDAP fails with: LDAP: error code 1 - 000020D6: SvcErr: DSID-031006CC,
problem5012 (DIR_ERROR), data 0]
If the "/" is escaped with a backslash LDAP fails with:
cn:Test Name s\/o (Testname)
LDAP: error code 34 - 00002081: NameErr: DSID-03050AE0, problem 2003
(BAD_ATT_SYNTAX), data 0, best match of: 'cn=Test Name s/o
(Testname),ou=thisyear,ou=person,ou=someou,dc=somewhere,dc=nothere'
We also tried doubling up the "/" but this also fails:
cn:Test name s//o (Testname)
LDAP: error code 1 - 000020D6: SvcErr: DSID-031006CC, problem 5012
(DIR_ERROR), data 0]
Manually adding the / through ADUC works but my user needs it to be added
via LDAP


|