I didn't find a user list for HttpClient so I'm posting this to the dev list.
We are switching our backend from JDBC to XML via HTTP. At peak hours we need to make up to 20 asynchronous requests per second. We are looking for a HTTP lib that provides some kind of "connection pooling" so that each request does not result in a new HTTP connection negotiation. The "threading" section of the HttpClient docs states: "In general the connection manager makes an attempt to reuse connections for a particular host while still allowing different connections to be used simultaneously. Connection are reclaimed using a least recently used approach." Does this mean that an instance of HttpClient with MultiThreadedHttpConnectionManager provides the functionality we are looking for? Kind regards Christian Nedreg�rd --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
