Re: Action called multiple times

2006-07-11 Thread Al Eridani
On 7/10/06, Thomas Joseph <[EMAIL PROTECTED]> wrote: Hi all, I have got a strange problem. My action class generates PDF, and writes on the the response and fushes it, but I can see that this action is getting called multiple times (2-5 times). I have cheked my struts-config to be just perfect (

RE: Action called multiple times

2006-07-11 Thread Samere, Adam J
truts Users Mailing List Subject: Re: Action called multiple times Hi, just to be sure: in the Action, you do a return null; if everything is successful? Everything else looks ok [1] or at least shouldn't trick Struts into rerunning the action. You might want to set the ContentType in the respon

Re: Action called multiple times

2006-07-11 Thread Ulrich Elsner
Hi, just to be sure: in the Action, you do a return null; if everything is successful? Everything else looks ok [1] or at least shouldn't trick Struts into rerunning the action. You might want to set the ContentType in the response, though. Ulrich [1] that is, looks just like my code, which j

Re: Action called multiple times

2006-07-11 Thread Thomas Joseph
> > - Original Message - > From: "Thomas Joseph" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Tuesday, July 11, 2006 1:29 AM > Subject: Action called multiple times > > > > Hi all, > > > > I have got a strange

Re: Action called multiple times

2006-07-11 Thread Martin Gainty
t; Sent: Tuesday, July 11, 2006 1:29 AM Subject: Action called multiple times > Hi all, > > I have got a strange problem. My action class generates PDF, and writes on > the the response and fushes it, but I can see that this action is getting > called multiple times (2-5 times).

Action called multiple times

2006-07-10 Thread Thomas Joseph
Hi all, I have got a strange problem. My action class generates PDF, and writes on the the response and fushes it, but I can see that this action is getting called multiple times (2-5 times). I have cheked my struts-config to be just perfect (No forwards) What may be the reason for this? What can