RE: Recieving responses from another request

2007-11-22 Thread Caldarale, Charles R
> From: Самойлов Андрей Иванович [mailto:[EMAIL PROTECTED] > Subject: RE: Recieving responses from another request > > Each incoming request requires a thread for the duration of > that request. How can occur, if the one thread suspended, the > another thread is answers

RE: Recieving responses from another request

2007-11-22 Thread Самойлов Андрей Иванович
, November 23, 2007 4:49 AM To: Tomcat Users List Subject: Re: Recieving responses from another request Самойлов Андрей Иванович wrote: > I use Tomcat v5.5.9, OS Windows 2003. On the Tomcat deployed a servlet, which > executes a stored procedure on the Oracle database, then prints the res

Re: Recieving responses from another request

2007-11-22 Thread Mark Thomas
Самойлов Андрей Иванович wrote: > I use Tomcat v5.5.9, OS Windows 2003. On the Tomcat deployed a servlet, which > executes a stored procedure on the Oracle database, then prints the result of > execution into output stream: > > StoredProcedure(); > > PrintWriter out = response.getWriter(); > ..

Recieving responses from another request

2007-11-21 Thread Самойлов Андрей Иванович
I use Tomcat v5.5.9, OS Windows 2003. On the Tomcat deployed a servlet, which executes a stored procedure on the Oracle database, then prints the result of execution into output stream: StoredProcedure(); PrintWriter out = response.getWriter(); ... out.println(result); out.close(); If a stored