LDAP |如何以编程方式判断特定属性的搜索是否区分大小写?
许多 LDAP 属性定义为搜索时不区分大小写。例如:
userId ATTRIBUTE ::= {
WITH SYNTAX DirectoryString { 256 }
EQUALITY MATCHING RULE caseIgnoreMatch
SUBSTRINGS MATCHING RULE caseIgnoreSubstringsMatch
ID id-userid
}
但是,管理员可以更改此设置。
如何确定特定属性搜索是否区分大小写?有没有办法以编程方式检查这个?
谢谢!
Many LDAP attributes are defined case-insensitive for search. For example:
userId ATTRIBUTE ::= {
WITH SYNTAX DirectoryString { 256 }
EQUALITY MATCHING RULE caseIgnoreMatch
SUBSTRINGS MATCHING RULE caseIgnoreSubstringsMatch
ID id-userid
}
However, this may be changed by the administrator.
How can I determine whether a specific attribute search is case-sensitive? Is there a way to check this programmatically?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:caseExactMatch:。请参阅 RFC 4515。
Use :caseExactMatch:. See RFC 4515.