Re: Time to process request

2009-12-10 Thread André Lopes
se to a "complete" page. > > > > -Original Message- > > From: André Lopes [mailto:afsalo...@gmail.com] > > Sent: Wednesday, December 09, 2009 12:44 PM > > To: Struts Users Mailing List > > Subject: Re: Time to process request > > > >

RE: Time to process request

2009-12-09 Thread Kawczynski, David
nd the response to a "complete" page. > -Original Message- > From: André Lopes [mailto:afsalo...@gmail.com] > Sent: Wednesday, December 09, 2009 12:44 PM > To: Struts Users Mailing List > Subject: Re: Time to process request > > I think execute and wait int

Re: Time to process request

2009-12-09 Thread André Lopes
I think execute and wait interceptor will do what i want that is to give the backend services an amount of time to do their job. If they don't do it in that time, the struts app should send a response message back to the client. The only problem with the interceptor is that it is not available in

Re: Time to process request

2009-12-09 Thread Wes Wannemacher
Your question is a bit vague, which might be why you are having trouble finding a solution... If I understand the problem properly, perhaps using the "Execute and Wait" facility will help - http://struts.apache.org/2.1.8.1/docs/execute-and-wait-interceptor.html As far as controlling the amount o

Time to process request

2009-12-09 Thread André Lopes
Hi all, I'm working on an application that makes requests to several backend services, and i need to establish a max time in wich the struts application must send the http response. Is it possible to define such timeout? I've been searching for a way to do this, but i haven't found anything. Chee