in reply to SOAP::Lite service timeout?
The proxy is the server or endpoint to which the client is going to connect.
Ok thanks that is good info. So is it fair to say then the question I need to ask is "What is the SOAP endpoint URL for my service?"
And ith that answer my code would be as below?
my $service = SOAP::Lite ->uri('http://localhost/' ) ->proxy('http://localhost/', timeout => 5 ) ->service('http://localhost/SOAPsvc?wsdl' ); [download]