> "Martin Gainty" <[email protected]> wrote in message 
> news:[email protected]...
>
> server.xml should contain this JNDIRealm specification defined globally
>     <Realm className="org.apache.catalina.realm.JNDIRealm"
>
>             <!-- The LDAP Address of your DC -->
>             connectionURL="ldap://dc1.domain.local:389";
>             <!-- Account information to access the Directory -->
>             connectionName="tom...@domain"
>             connectionPassword="AReallyLongPassword"
>
>             <!-- Where should Tomcat look for users -->
>            userBase="OU=users,OU=mydomain,DC=DOMAIN,DC=local"
>            userSearch="(sAMAccountName={0})"
>            userSubtree="true"
>            userRoleName="memberOf"
>
>            <!-- Where should tomcat look for groups -->
>            roleBase="OU=groups,OU=mydomain,DC=DOMAIN,DC=local"
>            roleSubtree="true"
>            roleName="cn"
>            roleSearch="(member={0})"
>            <!-- Debug Level -->
>            debug="99"
>        />

Ironically, although I have seen several examples with debug="99", I found 
absolutely nothing in the documentation or in the source code that indicates 
that "debug" does anything at all in the Realm configuration.  In fact, 
according to the docs, it isn't even a valid property.

Thanks,

Eric




---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to