Originally posted by Ulf Dittmer:
No, it's part of the Tomcat API, right here...
Originally posted by William Brogden:
If all these requests are going through the same application it seems to me that a request filter is what you want. Your filter can keep track of pending requests and refuse or otherwise throttle access as the number rises.
Bill
...You can use the Tomcat server API to gain access to Tomcat internals, something like:
ServerFactory.getServer()
server.findService(...)
(CoyoteConnector) service.findConnectors(...)
Originally posted by Ulf Dittmer:
The most popular package seems to be iText...