RE: Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-07-06 Thread Martin Gainty
: users@tomcat.apache.org > Subject: Re: Periodic slow response to initial call to > HttpServletRequest.getParameter() > > > I'm investigating the same type of issue with very similar symptoms. It's > always a POST but when the call to getParamter finally returns the

Re: Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-07-06 Thread mcoxta
I'm investigating the same type of issue with very similar symptoms. It's always a POST but when the call to getParamter finally returns there are no parameters. -- View this message in context: http://www.nabble.com/Periodic-slow-response-to-initial-call-to-HttpServletRequest.ge

Re: Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-06-11 Thread Bill Barker
"Mark Thomas" wrote in message news:4a31874f.8040...@apache.org... > Brian Harper wrote: >> Questions: >> 1. When is my servlet instantiated by Tomcat and its doPost method >> called? > Once the headers have been received and Tomcat can map the request. > But it is instantiated only for the fir

Re: Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-06-11 Thread Rainer Jung
On 12.06.2009 00:22, Brian Harper wrote: > I've been trying to locate the source of an issue we've encountered > periodically, and am hoping to find some enlightenment here. The issue > is that we're seeing periodic slow responses - in some cases as long as > 30-40 seconds for servlet requests that

Re: Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-06-11 Thread Mark Thomas
Brian Harper wrote: > Questions: > 1. When is my servlet instantiated by Tomcat and its doPost method > called? Once the headers have been received and Tomcat can map the request. > Does this happen before the entire body of the request has been > received? Yes. > In which case perhaps the delays

Periodic slow response to initial call to HttpServletRequest.getParameter()

2009-06-11 Thread Brian Harper
I've been trying to locate the source of an issue we've encountered periodically, and am hoping to find some enlightenment here. The issue is that we're seeing periodic slow responses - in some cases as long as 30-40 seconds for servlet requests that normally come in well under a second. In trouble