[OT] Re: Every action is getting called twice

2009-03-02 Thread Dave Newton
VenuGopalArkala wrote: if ur using and in js ur giving function formSubmit(){ document.populationSetForm.addNewR.value = ''; form.submit(); // this is the problem } Instead of form.submit() give return true; // ur problem will be solved O_o

Re: Every action is getting called twice

2009-03-02 Thread VenuGopalArkala
if ur using and in js ur giving function formSubmit(){ document.populationSetForm.addNewR.value = ''; form.submit(); // this is the problem } Instead of form.submit() give return true; // ur problem will be solved Manish(Java) wrote: > > HI

Re: Every action is getting called twice

2008-02-11 Thread Prajapati Manish
HI, Charbel In your problem, please make sure that your deployed application context is loaded only once. Because here,the problem might be related with it. Try it first and see what happens. Manish - Original Message - From: "Charbel Abdul-Massih" <[EMAIL PROTECTED]> To: Sent: Tue

Re: Every action is getting called twice

2008-02-11 Thread Laurie Harper
---Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 4:26 PM To: Struts Users Mailing List Subject: Re: Every action is getting called twice --- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: What am I doing wrong? Every request to an action go

Re: Every action is getting called twice

2008-02-11 Thread Van Riper
On 2/11/08, Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong? Every request to an action goes into the actions' > execute method twice... This is going to sound unrelated, but, do you use Firefox browser with Firebug enabled to test your code. I ran into one weird problem

RE: Every action is getting called twice

2008-02-11 Thread Wes Wannemacher
, and if true, calls > > Return actionInvocation.invoke(); > > Does this help any??? > > > -Original Message- > From: Dave Newton [mailto:[EMAIL PROTECTED] > Sent: Monday, February 11, 2008 4:26 PM > To: Struts Users Mailing List > Subject: Re: Every action is getting c

RE: Every action is getting called twice

2008-02-11 Thread Charbel Abdul-Massih
Does this help any??? -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 4:26 PM To: Struts Users Mailing List Subject: Re: Every action is getting called twice --- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong?

Re: Every action is getting called twice

2008-02-11 Thread Dave Newton
--- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong? Every request to an action goes into the actions' > execute method twice... > > I am sure that I am returning SUCCESS from the action, and is mapped to a > valid JSP. You are not providing enough information for anybod