Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 28123 invoked from network); 14 Feb 2006 04:47:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Feb 2006 04:47:14 -0000 Received: (qmail 24051 invoked by uid 500); 14 Feb 2006 04:46:59 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 24026 invoked by uid 500); 14 Feb 2006 04:46:58 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 24015 invoked by uid 99); 14 Feb 2006 04:46:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Feb 2006 20:46:58 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [203.200.146.36] (HELO aims-gate) (203.200.146.36) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Feb 2006 20:46:57 -0800 Received: from 192.168.108.201 ([192.168.109.45]RDNS failed) by aims-gate with trend_isnt_name_B; Tue, 14 Feb 2006 10:16:31 +0530 From: Abhilash Kumar X-mailserver: Sent using the PostMaster (v3.1.6.b1) To: "Tomcat Users List" Subject: RE: No of concurrent requests per session Date: Tue, 14 Feb 2006 10:14:48 +0530 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Importance: Normal X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello: Thanking everyone for words of wisdom .. I checked with firefox 1.0.7 also. It is also showing the same behaviour as with IE. thanks and regards, -- Kannan. -----Original Message----- From: DJohnson@desknetinc.com [mailto:DJohnson@desknetinc.com] Sent: Monday, February 13, 2006 9:58 PM To: Tomcat Users List Subject: RE: No of concurrent requests per session I suspect the problem relates to pipelining of HTTP 1.1 requests over a single persistent TCP connection. Pipelining is intended to improve efficiency, allowing the need for multiple images to present a web page be expressed to a web server one after another, before any of the responses are given. However, the responses must be presented in the same order as the requests, and therein lies your problem. If your short running request is issued over the same TCP connection as one of the earlier, yet to be responded to, long running requests, the response to the later request must wait for the earlier request to be responded to first. In this scenario, you need to get either the browser or the web server to stop using persistent connections. Of course, this may make it less efficient for serving up "normal" web pages. Please respond to "Tomcat Users List" To: "'Tomcat Users List'" cc: Subject: RE: No of concurrent requests per session I'm guessing this is more of a browser issue. If you're using IE, I seem to recall there is a registry entry that lets you set the maximum concurrent requests. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 > -----Original Message----- > From: Abhilash Kumar [mailto:abhilashkumar@aimshospital.org] > Sent: Monday, February 13, 2006 6:43 AM > To: Tomcat Users List > Subject: No of concurrent requests per session > > Hello: > > I am using Tomcat 5.0.30 with HTTP 1.1 Connector. If I try > to make a third request while two other request's (which i > have already made) responses have not yet arrived, then > Tomcat is not serving the request until one of the pending > response arrives. This limits me to only two pending requests > (irrespective of the webapp) at a time. > > My front app is like a dashboard which integarates multiple > web apps of which some are reporting apps which requires 4 to > 7 minutes to process a request and some are data processing > apps which requires only seconds to process the request. > Assume the user clicks on two reporting links which open up > as new windows from the main app window. Now when he clicks > on another link irrespctive of the webapp, nothing happens > until one of the reporting request's response is arrived. > This problem appears only if the requests belong to the same session. > > Any pointers / advices will be greatly appreciated. > > thanks and regards, > > -- Kannan. > > > > -------------------------------------------------------------- > Amritha Institute of Medical Sciences, Cochin, India > Sent using "PostMaster" by QuantumLink Communications > One Internet account, unlimited personal e-mail addresses > Get your free copy of "PostMaster" at http://www.mailserve.net/ > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org -------------------------------------------------------------- Amritha Institute of Medical Sciences, Cochin, India Sent using "PostMaster" by QuantumLink Communications One Internet account, unlimited personal e-mail addresses Get your free copy of "PostMaster" at http://www.mailserve.net/ --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org