The only normal situation where every method in the lifecycle would
get called twice is if you are doing "action chaining" -- the returned
ActionForward from one Action.execute() call points at a path that is
another Action, rather than being a JSP page or something in your view
tier.  In such a case, the entire lifecycle will get executed again
for the second Action.

Craig


On Thu, 28 Oct 2004 15:15:39 +0200, Marco Rossi <[EMAIL PROTECTED]> wrote:
> I try to extend the default RequestProcessor, only to view the call sequence.
> Something like this, for every method of the RP:
> 
> protected boolean processPreprocess(HttpServletRequest
> request,HttpServletResponse response)
>     {
>         logger.debug("processPreprocess");
>         return true;
>     }
> 
> I saw that every method is call two times. Why?
> 
> Thanks in advance
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to