You can use either path or extension mapping, but not a combination of both. So
/administrator/* is okay and *.do is okay but /administrator/*.do is not.

Quoting Mark Lowe <[EMAIL PROTECTED]>:

> 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]

-- 
Kris Schneider <mailto:[EMAIL PROTECTED]>
D.O.Tech       <http://www.dotech.com/>

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

Reply via email to