• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

WAS 3.5 -> WAS 4.0

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a limit to the number of connections a client can open to the port on which the appserver is running with WS4.0.
With WS3.5 there was a setting I remember for the OSE called Max connections which decides how many max connections to allow.
Matt
 
Ranch Hand
Posts: 906
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Matt Anderson:
Is there a limit to the number of connections a client can open to the port on which the appserver is running with WS4.0.
With WS3.5 there was a setting I remember for the OSE called Max connections which decides how many max connections to allow.
Matt


As far as I am concerned, I don't know this feature in WAS 4.
I had a quick look to the WAS admin console and I didn't find it.
 
Matt Anderson
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I found this as a parameter in httpd.conf the following is the parameter that needs to be set.
ThreadsPerChild 50
For details see page 874 of this
http://www.redbooks.ibm.com/redbooks/SG246176.html
Matt
 
JeanLouis Marechaux
Ranch Hand
Posts: 906
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is not a WebSphere feature but an Apache one.
It does not specify the number of connections a client can open but the number of concurrent connections from ALL the clients the webserver (Apache in that case) handles.
[ April 25, 2002: Message edited by: Bill Bailey ]
reply
    Bookmark Topic Watch Topic
  • New Topic