Re: JNDI Realm on Tomcat 4 does not work

2002-09-24 Thread John Holman
Stephan I answered this a couple of days ago ... did it not reach the list? You need to use curly brackets {} for the substitions, not parentheses () e.g. userPattern=uid={0},ou=people,dc=yikester,dc=net not userPattern=uid=(0),ou=people,dc=yikester,dc=net John

JNDI Realm on Tomcat 4 does not work

2002-09-23 Thread Stephan Schwab
Hi, I want to secure a webapp with the JNDI realm. But the LDAP query is sent wrong to my OpenLDAP server. Here is a snippet from server.xml: Realm className=org.apache.catalina.realm.JNDIRealm debug=99 connectionURL=ldap://localhost;

JNDI Realm on Tomcat 4 does not work

2002-09-22 Thread Stephan Schwab
Hi, I want to secure a webapp with the JNDI realm. But the LDAP query is sent wrong to my OpenLDAP server. Here is a snippet from server.xml: Realm className=org.apache.catalina.realm.JNDIRealm debug=99 connectionURL=ldap://localhost;

Re: JNDI Realm on Tomcat 4 does not work

2002-09-22 Thread John Holman
You need to use curly brackets {} for the substitions, not parentheses () e.g. userPattern=uid={0},ou=people,dc=yikester,dc=net not userPattern=uid=(0),ou=people,dc=yikester,dc=net John. Stephan Schwab wrote: Hi, I want to secure a webapp with the JNDI