Re: ActionFilter and detecting a forward

2003-01-24 Thread Max Cooper
Forwards are be subject to filtering, too. That is to say, when you forward, your request might go through some filters. If you're talking about Servlet filters (i.e. javax.filter.Filter), this is not true in a Servlet 2.3 container. In Servlet 2.4, you'll have the option to say you

ActionFilter and detecting a forward

2003-01-23 Thread Raible, Matt
I have an ActionFilter that is applied to all my /do/* requests. I want to populate a list of data, but only when the user goes to my mainMenu forward. What is the best way to detect that they are going here. I tried request.getRequestURL, but that doesn't do me any good, cause sometimes that

Re: ActionFilter and detecting a forward

2003-01-23 Thread V. Cekvenich
http://www.mail-archive.com/struts-user@jakarta.apache.org/msg42455.html See above how to store context and action change of prior action, it might help. .V Raible, Matt wrote: I have an ActionFilter that is applied to all my /do/* requests. I want to populate a list of data, but only when the

Re: ActionFilter and detecting a forward

2003-01-23 Thread Max Cooper
to display it. -Max - Original Message - From: Raible, Matt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 5:28 PM Subject: ActionFilter and detecting a forward I have an ActionFilter that is applied to all my /do/* requests. I want to populate a list of data

Re: ActionFilter and detecting a forward

2003-01-23 Thread Craig R. McClanahan
On Thu, 23 Jan 2003, Max Cooper wrote: Forwards are be subject to filtering, too. That is to say, when you forward, your request might go through some filters. If you're talking about Servlet filters (i.e. javax.filter.Filter), this is not true in a Servlet 2.3 container. In Servlet 2.4,