in reply to SOAP::Lite OO style with passed variables
use strict; use SOAP::Lite; use Data::Dumper; my $uri = "Optional URI"; my $proxy = "HTTPS:"; # <== insert print statement here to inspect $uri and $proxy print "URI = [$uri], PROXY = [$proxy]\n"; my $soap = SOAP::Lite->new( uri => ($uri || 'Some URI'), proxy => ($proxy || 'HTTP:') ); print Dumper($soap);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: SOAP::Lite OO style with passed variables
by Anonymous Monk on Nov 16, 2003 at 22:35 UTC |