You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@karaf.apache.org by kotoole <ke...@gmail.com> on 2014/11/02 05:29:47 UTC

LDAP module case sensitive in 3.0.2

In 3.0.1, the log shows:
Set the security principal for CN=Smith John,ou=users,dc=example,dc=com

In 3.0.2, the low shows:
Set the security principal for CN=Smith
John,OU=users,DC=example,DC=com*,ou=users,dc=example,dc=com*

This is due to a code change from
(String) result.getName();
to
result.getNameInNamespace().replace("," + userBaseDN, "");

Caused by https://issues.apache.org/jira/browse/KARAF-2957

It appears this is no longer acceptable:
user.base.dn=ou=users,dc=example,dc=com
It must be this:
user.base.dn=OU=users,DC=example,DC=com

*It seems like the replace code should be made case insensitive.*



--
View this message in context: http://karaf.922171.n3.nabble.com/LDAP-module-case-sensitive-in-3-0-2-tp4036193.html
Sent from the Karaf - User mailing list archive at Nabble.com.