I was able to make a LDAP query with wild card on a field username like
(&(username=*kpatel))
but I wasnt able to make it on a field like
(&(customername=*kpatel))
me and my teammate searched and finally found that username was inheriting from a super type uid and thats why it was working on it but customername was not.
Luckily solution to the problem was to add a SUBSTR clause to enable wildcard match on a field in ldap schema.
SUBSTR caseIgnoreSubstringsMatch
(&(username=*kpatel))
but I wasnt able to make it on a field like
(&(customername=*kpatel))
me and my teammate searched and finally found that username was inheriting from a super type uid and thats why it was working on it but customername was not.
Luckily solution to the problem was to add a SUBSTR clause to enable wildcard match on a field in ldap schema.
SUBSTR caseIgnoreSubstringsMatch
Comments
Post a Comment