|
I actually missed this - you need a fixed version of SOAP/WSDL.pm from http://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/trunk/lib/SOAP/WSDL.pm
With this version, you can set the timeout by passing additional arguments to the proxy() or set_proxy() methods like
my $soap = SOAP::WSDL->new( wsdl => 'WSDL.wsdl');
$soap->proxy('http://example.org', timeout => 512);
Martin
|