Re: Multiple xmlrpc calls over single connection

2009-01-14 Thread Yanwar Asrigo
I haven't checked it using that. I was basing it on the wire log: DEBUG [org.apache.commons.httpclient.HttpMethodBase] Resorting to protocol version default close connection policy DEBUG [org.apache.commons.httpclient.HttpMethodBase] Should NOT close connection, using HTTP/1.1 DEBUG [org.apache.co

Re: Multiple xmlrpc calls over single connection

2009-01-14 Thread Mike Boyers
I'm not sure if this helps with the discussion or not, but here goes. I haven't paid much attention to what happens when using httpclient within the xmlrpc framework, but around the days of httpclient v2.0, I used it extensively in a standalone fashion. I did look at version 3.0 as well, but

Re: Multiple xmlrpc calls over single connection

2009-01-14 Thread Craig Kelley
With Apache xmlrpc-1, each xmlrpc call corresponds with a new TCP connection -- even if its using http/1.1 and keepalive. On Wed, Jan 14, 2009 at 11:15 AM, Mike Boyers wrote: > I'm not sure if this helps with the discussion or not, but here goes. > > I haven't paid much attention to what happens

Re: Multiple xmlrpc calls over single connection

2009-01-14 Thread Stanislav Miklik
yes, I have similar experiences with xmlrpc-2.x with using XmlRpcLiteClient. This client for every request creates new transport class, ie. new connection was created every time. Therefore I have to create my new implementation : public class LiteClient extends XmlRpcClientLite { private XmlRp