Re: SecurityFilter with Struts quick and easy question

2004-02-17 Thread Max Cooper
Nathan, Struts actually uses a Servlet rather than a Filter. But you are right about Filters in general -- requests can pass through as many filters as you have configured. If you have both SecurityFilter and Struts in the same app, SecurityFilter will always be called first (when the request URL

Re: SecurityFilter with Struts quick and easy question

2004-02-17 Thread Nathan Maves
It does use a servlet that all request that match a filter are sent to. Are the filters called in the order that they appear in the web.xml file? Nathan Maves Sun Microsystems On Feb 17, 2004, at 10:05 AM, Max Cooper wrote: Nathan, Struts actually uses a Servlet rather than a Filter. But you

Re: SecurityFilter with Struts quick and easy question

2004-02-17 Thread Nathan Maves
Never Mind you were right :) Nathan Maves Sun Microsystems On Feb 17, 2004, at 12:08 PM, Nathan Maves wrote: It does use a servlet that all request that match a filter are sent to. Are the filters called in the order that they appear in the web.xml file? Nathan Maves Sun Microsystems On Feb

RE: SecurityFilter with Struts quick and easy question

2004-02-17 Thread Paul McCulloch
Have a look at the Servlet spec. Paul > -Original Message- > From: Nathan Maves [mailto:[EMAIL PROTECTED] > Sent: 17 February 2004 19:09 > To: Struts Users Mailing List > Subject: Re: SecurityFilter with Struts quick and easy question > > > It does use a servl