mrguy123 has asked for the wisdom of the Perl Monks concerning the following question:
The first proxy is the address for the SOAP server, and the second proxy is the Proxy settings. My problem is when I connect to SOAP::Lite with service description (WSDL), I have no idea where I can add Proxy settings. The code looks like this:$soap->proxy('http://endpoint.server/', proxy => ['http' => 'http://my.proxy.server/']);
When I try to add the Proxy settings like in eg. 1 I get an error message. I've scanned the documentation and the Guide but couldn't find anything. Does anybody know of a workaround where I can somehow add the Proxy settings?use SOAP::Lite; print SOAP::Lite -> service('http://www.xmethods.net/sd/StockQuoteService.wsdl') -> getQuote('MSFT');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Lite and proxy settings
by doowah2004 (Monk) on Nov 01, 2006 at 16:09 UTC | |
by mrguy123 (Hermit) on Nov 01, 2006 at 16:22 UTC | |
by doowah2004 (Monk) on Nov 01, 2006 at 16:33 UTC | |
|
Re: SOAP::Lite and proxy settings
by jhourcle (Prior) on Nov 01, 2006 at 19:53 UTC |