If you're using a javax.servlet.Filter and you then

  <filter-mapping>
        <filter-name>MyFilter</filter-name>
        <url-pattern>/administrator/*.do</url-pattern>
  </filter-mapping>

you can also map to a servlet name rather than a url pattern but this seems what you want.


On 24 Mar 2004, at 18:10, Sipe Informática wrote:


Thanks for your help, but it is not the problem... I deleted all about security in my web.xml to test only de filter mapping of the
struts action servlet:


<servlet-mapping>
       <servlet-name>action</servlet-name>
       <url-pattern>/administrator/*.do</url-pattern>
   </servlet-mapping>

With this mapping always returns to me a 400 error (Invalid Path)... I have tried also /app/administrator/*.do, but it returns
the same error... any idea?


Thanks ...

Pady Srinivasan wrote:

1. Make sure you define a security-role element for 'administrator' in
web.xml. Also the auth-constraint has role-name as 'administrador'. Maybe a
spelling error ?
2. And the role should be defined in tomcat-users.xml also. And the users in
this role would alone be allowed access.



Thanks -- pady [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to