Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
Hello all, We are having a problem with some Axis2 client code that is making a web service call to a server we do not control where that server gets locked up in some kind of bad state after having accepted a connection from us, but it does not read all of the request. The data is relatively

Re: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Chinmoy Chakraborty
From client side you can try this: Options options = new Options(); options.setTimeOutInMilliSeconds(60); HTH, Chinmoy On Tue, Nov 17, 2009 at 5:47 PM, Andy Dysart adys...@prospricing.comwrote: Hello all, We are having a problem with some Axis2 client code that is

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
Hello Chinmoy - thanks for your quick reply. I have tried this and unfortunately it does not seem to work. It does effectively set the read timeout on the underlying socket, but if the server malfunctions and stops reading and the message is large enough to fill the socket flow control

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Martin Gainty
Andy- seems to be specific to the transport that the connector is using..which protocol are you using ..HTTP 1.0 or HTTP1.1? Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
HTTP 1.1. BTW, this is Axis2 1.4.1. -andy From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Tuesday, November 17, 2009 8:09 PM To: axis-user@ws.apache.org Subject: RE: Any way to configure a write timeout as an Axis2 client? Andy- seems to be specific to