in reply to Re^2: SOAP WSDL and perl
in thread SOAP WSDL and perl
#!/usr/bin/perl use strict; use warnings; use Data::Dumper; use SOAP::Lite; use SOAP::WSDL; my $service = SOAP::Lite ->service('http://localhost:8080/axis2/service/StockQuoteSer +vice?wsdl'); print Dumper "IBM ", $service->getQuote('IBM'), "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: SOAP WSDL and perl
by secura (Initiate) on Nov 12, 2009 at 06:37 UTC | |
by Khen1950fx (Canon) on Nov 12, 2009 at 10:14 UTC |