in reply to SOAP::Lite, WSDL , and firewall
#!/usr/bin/perl use strict; use warnings; use SOAP::Lite; print SOAP::Lite -> uri('http://www.soaplite.com/Demo') -> proxy('http://services.soaplite.com/hibye.cgi') -> hi() -> result; my $soap = SOAP::Lite->proxy( 'http://user:password@endpoint.server:80/', proxy => ['http' => 'http://my.proxy.server/']);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: SOAP::Lite, WSDL , and firewall
by perlTM (Initiate) on May 23, 2010 at 09:03 UTC | |
by Khen1950fx (Canon) on May 23, 2010 at 09:30 UTC | |
|
Re^2: SOAP::Lite, WSDL , and firewall
by perlTM (Initiate) on May 23, 2010 at 08:56 UTC | |
by Anonymous Monk on May 23, 2010 at 11:58 UTC |