The new problem I'm having:
Trying to figure out the maximum number of concurrent connections that my
server deals with, I'm being able to open more than 20 connections at a
time, and less than 30 connections... The strange thing is that this value
only applies to the new connections I'm trying to open...

For instance, supose I try to start 40 threads and 10 fails to connect. 30
are connected. Now, again with the same 40 threads, I try to do another
request. the 40 threads work fine!
So, I supose that this second interaction is of 30 already active
connections + 10 new connections, so the server does not complain...
There doesn't seem to be a magic number... sometimes I get 28 connections
ok, sometimes I get about 25..

I tought of checking the http listener configuration.. but I have:

      <New class="org.mortbay.http.SocketListener">
            <Set name="MinThreads">10</Set>
            <Set name="MaxThreads">100</Set>

and this value does not match the cenario I'm having ... I changed the falue
for 50/200 and I kept having problems so it's not from there...

Any other places to look for?
I'm using Jboss 3.0.8
Thank you



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to