Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^2: Parameter passing using SOAP::Data in perl

by Anonymous Monk
on Aug 08, 2012 at 08:10 UTC ( [id://986171]=note: print w/replies, xml ) Need Help??


in reply to Re: Parameter passing using SOAP::Data in perl
in thread Parameter passing using SOAP::Data in perl

Very good and helpful answer!!! maybe it would be better if you set the namespace in data object.
my $soapa = SOAP::Lite->new(); $soapa->proxy("$WS_proxy"); $soapa->readable(1); $soapa->service("$WS_service"); my $data = SOAP::Data->new(); $data->uri("$WS_namespace"); my $method = $data->name('yourService'); my @params = (SOAP::Data->name('arg1' => ""), SOAP::Data->name('arg0' => "")); $result = $soapa->call($method => @params)->result; print Dumper($result); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://986171]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-26 08:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found