Re: S2 Request Lifecycle

2007-04-09 Thread Ted Husted
If validation fails, then the original input values are pushed onto the stack, so that the tags can present the input values. If the Action or Model properties were different, then the original input properties would still be presented by the tags, because the original input properties were the la

Re: S2 Request Lifecycle

2007-04-09 Thread stanlick
Then is something reloading the properties back into the bean if the action method returns INPUT? On 4/9/07, Ted Husted <[EMAIL PROTECTED]> wrote: It shouldn't. The interceptor only autowires become the action invocation. http://svn.opensymphony.com/fisheye/browse/xwork/trunk/src/java/com/ope

Re: S2 Request Lifecycle

2007-04-09 Thread Ted Husted
It shouldn't. The interceptor only autowires become the action invocation. http://svn.opensymphony.com/fisheye/browse/xwork/trunk/src/java/com/opensymphony/xwork2/spring/interceptor/ActionAutowiringInterceptor.java?r=1063 -T. On 4/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Sorry Ted!

Re: S2 Request Lifecycle

2007-04-09 Thread stanlick
Sorry Ted! I should have been more clear with my question. Does S2 leverage Spring in such a way as so fetch a new Action bean when the Action method returns SUCCESS? It appears a new bean is being injected into my Action when a method returns SUCCESS. Scott On 4/9/07, Ted Husted <[EMAIL PROT

Re: S2 Request Lifecycle

2007-04-09 Thread Ted Husted
By default, "input" is one of the magic methods that bypass validation. In the case of a request for the input method, validation is not applied, and input is returned. In the case of request for the default execute/success method, input would be returned if validation fails, and success returned

S2 Request Lifecycle

2007-04-09 Thread stanlick
I have an interesting situation occurring but let me first ask how the request lifecycle differs between returning INPUT or SUCCESS from an action method. Consider this action mapping: /pages/course.jsp /pages/course.jsp -- Scott [EMAIL PROTECTED]