Re: Interceptor question

2011-12-09 Thread Brian McCullough
On Fri, Dec 09, 2011 at 03:37:10PM -0500, Dave Newton wrote: > That was a long question :( Yes, I wanted to make sure that I had covered all of what I had already done. > Yes; the default-intereptor-ref element is a per-package configuration, as > described in the pacakge configuration docs [1].

Re: Interceptor question

2011-12-09 Thread Dave Newton
That was a long question :( On Fri, Dec 9, 2011 at 2:48 PM, Brian McCullough wrote: > I would like to be able to define a particular Interceptor Stack as being > the Default for a particular packageName, and applicable to the whole > Package and its Actions, instead of having to code interceptor-

Re: Interceptor question

2009-09-09 Thread musomesa
By the way, Pawel, at that link some software seems to have severely butchered your xml in the struts.xml part. Chris -Original Message- From: Dale Newfield To: Struts Users Mailing List Sent: Wed, Sep 9, 2009 12:41 pm Subject: Re: Interceptor question Paweł

Re: Interceptor question

2009-09-09 Thread Dale Newfield
Paweł Wielgus wrote: Mike You can take a look at my post about this problem [1] and read more about Spring Security (ACEGI). [1] - http://poulwiel.blogspot.com/2009/01/intercepting-all-actions-inside-my-app.html I don't understand what your problem is. As you state, you can set the intercep

Re: Interceptor question

2009-09-09 Thread Paweł Wielgus
Hi all, Mike You can take a look at my post about this problem [1] and read more about Spring Security (ACEGI). [1] - http://poulwiel.blogspot.com/2009/01/intercepting-all-actions-inside-my-app.html Best greetings, Paweł Wielgus. 2009/9/9 Dale Newfield : > Mike Baranski wrote: >> >> If I run a

Re: Interceptor question

2009-09-09 Thread Dale Newfield
Mike Baranski wrote: If I run an interceptor on an action, then redirect, is the same interceptor run on the redirected-to action? "then redirect" means that request is done, and the browser will be submitting a new request. That new request gets processed according to the action/interceptor

Re: Interceptor question

2009-09-09 Thread Dale Newfield
Wes Wannemacher wrote: If the action you are redirecting to has the same interceptor-stack (via package inheritance or interceptor configuration), then the answer is 'yes' So the answer is to not put this "force to password change page" interceptor in the stack used for the password change pag

Re: Interceptor question

2009-09-09 Thread Wes Wannemacher
If the action you are redirecting to has the same interceptor-stack (via package inheritance or interceptor configuration), then the answer is 'yes' -Wes On Wed, Sep 9, 2009 at 12:12 PM, Mike Baranski wrote: > I have a question about an interceptor. > > If I run an interceptor on an action, then