I have discovered the issue. Because the WSDL2Java tools do not work with the DataHandler class I had to write some custom client code to make the calls. So this code was getting bypassed completely.
Stuart Barlow wrote:
I am using AXIS 1.1 and the WSDL2Java to generate the client bindings. Upon generating the bindings I then use ANT to replace the line... return _call;
with... _call.setTimeout(new Integer(600000));return _call;
This is all in the createCall() method in the generated Stub class. However this is having no effect. The call is still timing out after 60secs.
I have decompiled the source and it is turned into this... _call.setTimeout(new Integer(0x927c0)); return _call;
So does the _call.setTimeout() method not work Any thoughts?
ta, Stuart.