Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 70898 invoked from network); 26 Jul 2000 08:46:18 -0000 Received: from unknown (HELO firewall.isb-ka.de) (root@194.175.108.130) by locus.apache.org with SMTP; 26 Jul 2000 08:46:18 -0000 Received: (from root@localhost) by firewall.isb-ka.de (8.8.8/8.8.8) id KAA06549 for ; Wed, 26 Jul 2000 10:46:11 +0200 Received: from unknown(192.168.1.42) by firewall.isb-ka.de via smap (V2.0) id xma006547; Wed, 26 Jul 00 10:46:09 +0200 Received: from isb-ka.de (ISB-PC6 [192.168.1.76]) by isb-ka.de (8.8.8/8.8.8) with ESMTP id KAA22017 for ; Wed, 26 Jul 2000 10:46:09 +0200 Message-ID: <397EA60D.1FD77D0F@isb-ka.de> Date: Wed, 26 Jul 2000 10:49:17 +0200 From: Andreas Junghans X-Mailer: Mozilla 4.7 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: tomcat-user@jakarta.apache.org Subject: Slow POST? Content-Type: multipart/mixed; boundary="------------E5C3465FBEFCD9051F3230A4" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N This is a multi-part message in MIME format. --------------E5C3465FBEFCD9051F3230A4 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi everybody, I'm not sure whether this is the right place to ask, so please forgive me if I should post this somewhere else. When I access a JSP via GET, I get an immediate response. When the same page is requested via POST, there is random delay up to about 3 seconds (also when reloading the page, so it's not the time needed to compile the JSP). I wonder where this delay comes from? I don't think that any of my code is responsible for it, since all works fine with GET. I've experienced this behaviour with both Tomcat standalone and together with Apache. I've not tried this with any other Servlet engine, maybe it's "normal" behaviour? The JSP in question is attached to this message. My configuration: Tomcat 3.1 Apache 1.3.12 (Win32) Windows NT 4.0 SP5 Netscape Navigator 4.7 Thank you very much -- Andreas Junghans - Anwendungsentwickler - ISB GmbH Tel: +49 (0)721/82800-0 Karlstra�e 52-54 Fax: +49 (0)721/82800-82 76133 Karlsruhe mailto:andreas.junghans@isb-ka.de Germany http://www.isb-ka.de --------------E5C3465FBEFCD9051F3230A4 Content-Type: text/html; charset=us-ascii; name="direct_request.jsp" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="direct_request.jsp" ecom framework (direct request) <% if (request.getParameter("show").equals("request")) { %>

Enter your direct XML request below

<% } else { %>

The response to your request was

				<%= ecom.dispatch(request.getParameter("request"), session.getId()) %>
			
<% } %> --------------E5C3465FBEFCD9051F3230A4--