I want a java program, which can find the maximum number of concurrent connections that a server can handle ?
You can assume that the server is http server.
To be more clear:
There are lots of opensource NIO frameworks. I want to pick one for my project. And want to test which implemenation supports maximum number of concurrent connections. Some of these frameworks claim that they support these many. But I want to get it verified myself before chosing one.
My intentions is to support as many concurrent connections without dropping/rejecting clients?