Re: Action Execute Being called 2 times

2008-08-04 Thread aum strut
Hi, I tried all things and its again not working still action is getting called 2 times for each call to this Register Action i am attaching the Register.jsp,Struts.xml as well as the action class please have a look at it and point me where i am doing the mistake. Thanks in Advance -aum On

Re: Action Execute Being called 2 times

2008-08-04 Thread Gabriel Belingueres
can't see the jsp file. In the action class you are not using modeldriven as you said in the first email. 2008/8/4 aum strut [EMAIL PROTECTED]: Hi, I tried all things and its again not working still action is getting called 2 times for each call to this Register Action i am attaching the

Action Execute Being called 2 times

2008-08-01 Thread aum strut
Hi All, While developing an application in struts2 i am facing a strange problem with one of my action namely RegsitrationAction. i have a jsp page for user registration where there are certain fields for the user to be filled for the registration purpose. i have created a UserProfile bean class

Re: Action Execute Being called 2 times

2008-08-01 Thread Joachim Ansorg
Hi, you use the same action to render the welcome screen and Registrer.jsp. So this means that when you display the welcome screen execute() is called and when you display the Registrer.jsp page. Either use two separate actions or just return null in execute and have another action method