> From: Abhilash Kumar [mailto:[EMAIL PROTECTED] 
> Subject: No of concurrent requests per session
> 
>  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. 

As a previous responder suggested, this is indeed a browser issue.  The
HTTP RFC (2616, section 8.1.4) recommends no more than two outstanding
connections for a given host at one time:

   Clients that use persistent connections SHOULD limit the number of
   simultaneous connections that they maintain to a given server. A
   single-user client SHOULD NOT maintain more than 2 connections with
   any server or proxy.

IE implements this by default.  Tomcat can't process a request that it
hasn't been given.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to