Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-13 Thread Danny Hurlburt
Does anyone know if it true that if the Struts FilterDispatcher finds a match for an action that the matching servlet is not invoked? That is, will it will skip calling chain.doFilter(...) on the FilterChain object when it finds a match? I have not looked at the source code yet. Danny Hurlburt wr

Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-13 Thread Danny Hurlburt
I have added a filter mapping. See the second sentence of the original post. The problem is that according to the Servlet Spec (at least my understanding of it) "Filters can be associated with groups of servlets and static content using the style of filter mapping". Since the Struts actions ar

Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Jeromy Evans
Tomcat w/o the default servlet, though? Ahh... you're right. It's a standard install with the default and jsp servlets enabled. Sorry, I didn't look there. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Dave Newton
--- Jeromy Evans wrote: > I have plenty of S2 webapps that don't include a > servlet in web.xml and haven't encountered this > problem. Have you included a filter mapping > instead? Tomcat w/o the default servlet, though? d. ___

Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Jeromy Evans
I have plenty of S2 webapps that don't include a servlet in web.xml and haven't encountered this problem. Have you included a filter mapping instead? web.xml: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://j

[OT] Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Dave Newton
Please start new threads for new topics. --- Session A Mwamufiya wrote: > [...] but have not been able to get it to work; Providing symptoms would allow people to help you better. IIRC you're not using Maven (neither am I). Do you have any Eclipse experience at all? Are you using MyEclipse? > C

Re: FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Session A Mwamufiya
Hi Dan, Sorry that I don't have an answer for you, but rather a question: "are you using Eclipse for your development?" is that where you use the breakpoints? I've been trying to setup struts 2 to work with Eclipse, but have not been able to get it to work; so instead, I code the files with a

FilterDispatcher not being invoked with URL pattern /*

2007-06-12 Thread Danny Hurlburt
Hello, I am using Tomcat 5.5 as my servlet container. I have added the org.apache.struts2.dispatcher.FilterDispatcher as a filter with a url pattern of /*. struts2 org.apache.struts2.dispatcher.FilterDispatcher When following the HelloWorld example on the Strut's wiki (h