Re: Servlet Concurrency problem

2008-04-10 Thread davilovick
This is solution of my problem, thanks =) David Smith-2 wrote: > > I'm guessing these requests are from the same browser. The browser > limits the number of connections it makes to the server to 2. If you > really need more, google for hacks to the browser to allow more. > > --David > > da

Re: Servlet Concurrency problem

2008-04-09 Thread Mikolaj Rydzewski
David Smith wrote: I'm guessing these requests are from the same browser. The browser limits the number of connections it makes to the server to 2. If you really need more, google for hacks to the browser to allow more. Or use wget, ab, jmeter, etc. -- Mikolaj Rydzewski <[EMAIL PROTECTED]>

Re: Servlet Concurrency problem

2008-04-09 Thread David Smith
I'm guessing these requests are from the same browser. The browser limits the number of connections it makes to the server to 2. If you really need more, google for hacks to the browser to allow more. --David davilovick wrote: Hi, we are trying to develop a servlet, but ive encountered some