What't the syntax for performing a case-insensitive match on a 'uid' attribute? If attribute definition matters then how would that be changed? In particular I am using ApacheDS for my LDAP store.
相关问题
- FindFirstFileEx doesn't operate case sensitive
- PrincipalContext LDAPS Self-Signed Certificate
- Get all attributes from Active Directory using Spr
- Filter ldapsearch with awk/bash
- How do you search by dn in ldap
相关文章
- getting user details from AD is slow
- Can't get deleted items from OpenLDAP Server u
- Is it possible to send LDAP “requests” via telnet?
- GWT JDBC LDAP connection fails
- Active Directory Authentication with .NET Core Web
- Is it possible to connect ldap server directly to
- LdapConnection cannot re-bind other than with Basi
- Spring Security Ldap, log in only users in specifi
I think they are case insensitive by default, unless its a password attribute.
(uid=miXedCaseUSer)
will match a uid of mixedcaseuser.Accoriding to the OID Description for 0.9.2342.19200300.100.1.1 - Userid userId is defined to have
EQUALITY MATCHING RULE caseIgnoreMatch
Which means it is one of the attribute definitions that employ case insensitive matching by default.