Concurrent threads per session (limit = 3 ?)

2007-08-14 Thread Riechert, Andree
Hi, if I am using the firefox browser to send requests to a tomcat servlet all new browser tabs belonging to the same session. I am running AJAX requests which block the servlet request thread 60 seconds waiting for a certain event. This leads to the uncomfortable behavior that the fourth

Re: Concurrent threads per session (limit = 3 ?)

2007-08-14 Thread David Delbecq
I doubt tomcat limits the number of Threads per session. To get the session id, tomcat need to parse the request, but this parsing occurs in the Http-Thread that handle that network connection. Having that HTTP-thread wait would be, for tomcat, wasting a Thread. On the other hand, it's common

RE: Concurrent threads per session (limit = 3 ?)

2007-08-14 Thread Caldarale, Charles R
From: Riechert, Andree [mailto:[EMAIL PROTECTED] Subject: Concurrent threads per session (limit = 3 ?) It seems to me that the tomcat (v 5.5) limits the number of threads per session to 3. As David pointed out, it's not Tomcat imposing a limit - it's Firefox complying