in reply to Re: Error calling a simple Soap API using Perl's Soap::Lite
in thread Error calling a simple Soap API using Perl's Soap::Lite
my $proxy = 'http://www.dneonline.com/calculator.asmx'; my $ns = 'http://www.tempuri.org/'; $method = SOAP::Data->name('Add') ->attr({xmlns => 'http://tempuri.org/'}); $client = SOAP::Lite->new() ->proxy($proxy) ->ns($ns,'tem') ->readable(1); $client->on_action( sub { join '', @_ } ); push(@parms, SOAP::Data->name(intA => $x)); push(@parms, SOAP::Data->name(intB => $y)); $response = $client->call($method => @parms)->result; print "Result is $response \n";
|
|---|