Re: Docs around processing request parameters in intercepters

2009-08-25 Thread Dale Newfield
Wim De Smet wrote: Hmm very maybe it could have something to do with the execute-and-wait interceptor then? Yes. http://struts.apache.org/2.x/docs/execute-and-wait-interceptor.html says: "Important: Because the action will be running in a seperate thread, you can't use ActionContext because

Re: Docs around processing request parameters in intercepters

2009-08-24 Thread Wim De Smet
Hmm very maybe it could have something to do with the execute-and-wait interceptor then? regards, wim On Wed, Aug 19, 2009 at 6:17 PM, Musachy Barroso wrote: > that is very strange, that should never happen unless you call it from > another thread. > > musachy > > On Wed, Aug 19, 2009 at 1:39 AM,

Re: Docs around processing request parameters in intercepters

2009-08-19 Thread Musachy Barroso
that is very strange, that should never happen unless you call it from another thread. musachy On Wed, Aug 19, 2009 at 1:39 AM, Wim De Smet wrote: > Hi list, > > I was trying to debug an interceptor someone here wrote that kept > throwing up NullPointerExceptions. It seems > ServletActionContext.

Docs around processing request parameters in intercepters

2009-08-19 Thread Wim De Smet
Hi list, I was trying to debug an interceptor someone here wrote that kept throwing up NullPointerExceptions. It seems ServletActionContext.getRequest() returns null after the invocation.invoke() has been called in an interceptor. I skimmed most of the general docs on interceptors and the ServletA