RE: AbstractConnPool (httpcore-4.3.2.jar)- how to increase available connections

2015-01-23 Thread Dinesh Babu
We found the fix. Sharing just in case if any one comes across this issue. The root cause was because Apache Connection pool mechanism does not seem to allow more than 2 connections for a client at any given time and we needed 3 connections. So what we did was to use a new client for each call.

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Oleg Kalnichevski
On Mon, 2014-12-29 at 15:15 +0100, Philippe Mouawad wrote: Hi Oleg, Thanks for answers. Clarifications below inline. Regards Hi Philippe sorry for such a long delay in answering your message. One can force SSL renegotiation by evicting all idle connections from the connection pool.

Re: Need a way to send a URL's stream as multi-part entity with repeatable blocks

2015-01-23 Thread Joe Barnes
Oleg, Sorry for my slow reply, but I wanted to report that this solution worked well in case it helps others in the future. Thank you for taking the time to help! Joe On Thu, Dec 18, 2014 at 12:12 PM, Joe Barnes barne...@gmail.com wrote: Oh wow... I had not noticed that method on URL. I'll

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Philippe Mouawad
On Fri, Jan 23, 2015 at 6:09 PM, Oleg Kalnichevski ol...@apache.org wrote: On Mon, 2014-12-29 at 15:15 +0100, Philippe Mouawad wrote: Hi Oleg, Thanks for answers. Clarifications below inline. Regards Hi Philippe sorry for such a long delay in answering your message. No problem,

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Oleg Kalnichevski
On Fri, 2015-01-23 at 20:42 +0100, Philippe Mouawad wrote: On Fri, Jan 23, 2015 at 6:09 PM, Oleg Kalnichevski ol...@apache.org wrote: ... Please note that if JMeter needs to simulate several physical users having a separate connection pool per distinct user may be the easiest and

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Philippe Mouawad
On Fri, Jan 23, 2015 at 11:48 PM, Oleg Kalnichevski ol...@apache.org wrote: On Fri, 2015-01-23 at 23:10 +0100, Philippe Mouawad wrote: On Fri, Jan 23, 2015 at 10:00 PM, Oleg Kalnichevski ol...@apache.org wrote: On Fri, 2015-01-23 at 20:42 +0100, Philippe Mouawad wrote: On Fri, Jan

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Oleg Kalnichevski
On Fri, 2015-01-23 at 23:10 +0100, Philippe Mouawad wrote: On Fri, Jan 23, 2015 at 10:00 PM, Oleg Kalnichevski ol...@apache.org wrote: On Fri, 2015-01-23 at 20:42 +0100, Philippe Mouawad wrote: On Fri, Jan 23, 2015 at 6:09 PM, Oleg Kalnichevski ol...@apache.org wrote: ...

Re: httpClient.getConnectionManager() performance with HTTP only

2015-01-23 Thread Philippe Mouawad
On Fri, Jan 23, 2015 at 10:00 PM, Oleg Kalnichevski ol...@apache.org wrote: On Fri, 2015-01-23 at 20:42 +0100, Philippe Mouawad wrote: On Fri, Jan 23, 2015 at 6:09 PM, Oleg Kalnichevski ol...@apache.org wrote: ... Please note that if JMeter needs to simulate several physical users

Caching stateful HTTP clients in a pool

2015-01-23 Thread Michael Osipov
Hi folks, I am looking for a design decision to cache session information for a request workflow embedded in a SOAP/REST-based webapp. Here is a little background how the workflow is structured and what I am trying to solve: Note: I have read the entire tutorial and am somewhat overwhelmed