Hi, thanks to Mr. T for your previous reply.
I have a nother problem with the url-pattern and filtering!!!

my application is using Struts 1.1, and is trying to filter all the jsp files in the 
/res folder... using the filter myfilter
so in the web.xml we have
...
<filter-mapping>
   <filter-name>myfilter</filter-name>
   <url-pattern>/res/*</url-pattern>
 </filter-mapping>

now what I have is that 
first.jsp is a form based which activates checkUser.do on the submit command.
checkUser Action, does some db checks and executes /res/userWelcome.jsp using the 
mapping.findForward("welcome"); , where "welcome" was defined in the action forwarders 
to point to /res/resUserWelcome.jsp,
it is also in the same folder /res, but this time it didnt get filtered at all,.... 
why why why
Please someone tell me why!
thanks

Reply via email to