mythsgreeks has asked for the wisdom of the Perl Monks concerning the following question:
#!perl -w # Enable Perl warnings use strict; use warnings; # SOAP::Lite module use SOAP::Lite; my %params = ( "libs" => "DSMZ_BACT" , "id" => "DSM_SP_9849" ); #my %output = ( "output" => "" ); # WSDbfetch WSDL URL my $WSDL = 'http://bioinformatics.istge.it:8080/axis/services/cabri.ge +tBacteriaById?wsdl'; # Create the service interface my $soap = new SOAP::Lite->service($WSDL); my %output = $soap->runAndWaitFor(%params); #my $result = $output->valueof('//output'); #print $result ; #print $output->{'output'}; print %output;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl client for soap web service rpc
by rmflow (Beadle) on Jan 18, 2010 at 12:11 UTC | |
by mythsgreeks (Initiate) on Jan 18, 2010 at 12:49 UTC |