in reply to SOAP::Lite service timeout?

Proxy is not about HTTP Proxy. Looks it's SOAP endpoint (however I am not sure now what is endpoint for)
The proxy is the server or endpoint to which the client is going to connect.

Replies are listed 'Best First'.
Re^2: SOAP::Lite service timeout?
by agentorange (Sexton) on May 15, 2013 at 13:39 UTC

    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' );