Gorby has asked for the wisdom of the Perl Monks concerning the following question:
$data1=SOAP::Data->name('var1')->value($value)->type('string'); $response=SOAP::Lite ->uri($uri) ->proxy($proxy) ->function1($data1);
sub function1 { %parameters=@_; $var1=$parameters{var1}; return($var1); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Expecting data from SOAP::Data
by gellyfish (Monsignor) on Jan 19, 2005 at 15:28 UTC | |
|
Re: Expecting data from SOAP::Data
by rdfield (Priest) on Jan 19, 2005 at 15:19 UTC |