Re: XML-RPC timeout

2010-02-16 Thread Lars Schnoor
I did and it works now, thank you! Jochen Wiedmann wrote: Quite possible. Try 3.1.3. On Mon, Feb 15, 2010 at 11:50 AM, Lars Schnoor lars.schn...@ifad.dk wrote: When I look at the source code for XML-RPC 3.1.2 I can't see any initHttpHeaders in XmlRpcSun15HttpTransport, is this

Email box closing - Re: Re: XML-RPC timeout

2010-02-16 Thread jwh
Thanks for your message, however ... Sorry but I'm closing this email box down and will not be checking email sent to it any longer. If this was a genuine email then please update your email address for me to jamie[dot]howard[at]web-engineer[dot]co[dot]uk and resend your message, otherwise I

Email box closing - Re: Re: XML-RPC timeout

2010-02-15 Thread jwh
Thanks for your message, however ... Sorry but I'm closing this email box down and will not be checking email sent to it any longer. If this was a genuine email then please update your email address for me to jamie[dot]howard[at]web-engineer[dot]co[dot]uk and resend your message, otherwise I

Re: XML-RPC timeout

2010-02-15 Thread Jochen Wiedmann
Quite possible. Try 3.1.3. On Mon, Feb 15, 2010 at 11:50 AM, Lars Schnoor lars.schn...@ifad.dk wrote: When I look at the source code for XML-RPC 3.1.2 I can't see any initHttpHeaders in XmlRpcSun15HttpTransport, is this initHttpHeaders a newer thing? Jochen Wiedmann wrote: Put a

Re: XML-RPC timeout

2010-02-12 Thread Lars Schnoor
How do I set the transport factory? I followed the example on the website. Jochen Wiedmann wrote: Are you using a proper transport factory, like XmlRpcSun15HttpTransportFactory? On Fri, Feb 12, 2010 at 4:01 PM, Lars Schnoor lars.schn...@ifad.dk wrote: Hi I have seen that the

Re: XML-RPC timeout

2010-02-12 Thread Jochen Wiedmann
http://ws.apache.org/xmlrpc/apidocs/org/apache/xmlrpc/client/XmlRpcClient.html#setTransportFactory(org.apache.xmlrpc.client.XmlRpcTransportFactory) On Fri, Feb 12, 2010 at 4:12 PM, Lars Schnoor lars.schn...@ifad.dk wrote: How do I set the transport factory? I followed the example on the

Re: XML-RPC timeout

2010-02-12 Thread Lars Schnoor
Would this be correct? XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl(); config.setConnectionTimeout(2000); config.setReplyTimeout(5000); this.client = new XmlRpcClient(); this.client.setConfig(config);