views:

23

answers:

1

Can you configure a JBoss web application to be single threaded? Ie: only accept one incoming web request (ie: socket connection) at a time? Or is there a way to say max 3 concurrent connections? I know it's an unusual configuration but we were curious..

+4  A: 

Set maxThreads to 1 in the Connector element.

John Paulett