Hi, I'm using PoolingClientConnectionManager to obtain a HttpClient and after execute a HttpPost where I set 1 to max for the pool.
Looking at connection state with netstat I see the connection status in ESTABLISHED (and this is the right behavoir that I expect) for all my test. How is possible to force PoolingClientConnectionManager to close a specifice connection and recreate a new one ? In my code I tried to use releaseConnection() but the status not change in the netstatlist and if I use httpClient.getConnectionManager().shutdown() (used previously to kill the connection but with not Pooled connection ) the PoolingClientConnectionManager became not working Thank you very much
