RE: http timeouts

2002-04-03 Thread McEligot, Sean (contractor)
Thanks, that's what I was looking for. I will call setSOAPTransport instead of modifying the code from now on. > I'm not sure why you needed to change Message.java. Your > client code can > create a SOAPHTTPConnection, set its timeout, then set the > transport on the > Message (or Call for RPC

Re: http timeouts

2002-03-31 Thread Scott Nichol
Sean, I'm not sure why you needed to change Message.java. Your client code can create a SOAPHTTPConnection, set its timeout, then set the transport on the Message (or Call for RPC) instance: SOAPHTTPConnection st = new SOAPHTTPConnection(); st.setTimeout(xxx); Message msg = new Message(); msg.s

RE: http timeouts

2002-03-29 Thread McEligot, Sean (contractor)
The same thing could be done to Call.invoke(), adding something like: if (st instanceof SOAPHTTPConnection) { SOAPHTTPConnection http = (SOAPHTTPConnection)st; http.setTimeout(timeoutMillis); } > My application needs to be able to detect and handled network > failures. For > this