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) instance: > > SOAPHTTPConnection st = new SOAPHTTPConnection(); > st.setTimeout(xxx); > Message msg = new Message(); > msg.setSOAPTransport(st); > ... > msg.send(...); > > Scott Nichol