Re: execute() not getting executed

2009-10-17 Thread Denis Cabasson
No out of the box way of dealing with that. You can send your jsp code / Action code to see if we can figure out what is wrong. Denis. james billa a écrit : Hi - I am using struts 2.1.6. From my jsp on submitting the form, the control goes to my action class, methods prepare() and validate() g

Re: execute() not getting executed

2009-10-16 Thread Denis Cabasson
No out of the box way of dealing with that. You can send your jsp code / Action code to see if we can figure out what is wrong. Denis. james billa a écrit : Hi - I am using struts 2.1.6. From my jsp on submitting the form, the control goes to my action class, methods prepare() and validate() g

Re: execute() not getting executed

2009-10-16 Thread Thomas Sattler
execute() is the *default* method for an Action class. It's not the *only* method. execute() will get called if you don't have a different method specified. You can basically call any method you want; leaving out the "method=" parameter is the same as specifying "method=execute". But you can spe

Re: execute() not getting executed

2009-10-16 Thread Lukasz Lenart
Typo? Regards -- Lukasz http://www.lenart.org.pl/ http://dailylog.lenart.org.pl/ - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

execute() not getting executed

2009-10-16 Thread james billa
Hi - I am using struts 2.1.6. From my jsp on submitting the form, the control goes to my action class, methods prepare() and validate() gets executed. But after that the execute() is not getting called. I don't have any error messages printed on my console. I have only system.out in prepare() and v