> From: Diogenes Gomes [mailto:[EMAIL PROTECTED] 
> Subject: Problem with protecting pages in Tomcat 5.5
> 
>               <auth-constraint>
>                       <role-name>*</role-name>
>               </auth-constraint>

IIRC, 5.0 misinterpreted a <role-name> setting of *; this was corrected
in 5.5 and above.  The asterisk does not mean "any role", but rather
"all defined roles".  (See section 12 of the servlet spec.)  You need to
provide a set of valid roles via <security-role> in your web.xml file.

> <Context debug="99" docBase="${catalina.home}/webapps/testeweb"
>       path="/testeweb">

Take out the docBase and path attributes - they're not allowed when the
<Context> element is in META-INF/context.xml (where it should be).

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to