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 procedure executes too slowly (>1 hour), then a client recieves response from another request. How to eliminate this? --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]