RosettaCodeData/Task/SOAP/Perl/soap.pl

9 lines
194 B
Perl
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
use SOAP::Lite;
print SOAP::Lite
-> service('http://example.com/soap/wsdl')
-> soapFunc("hello");
print SOAP::Lite
-> service('http://example.com/soap/wsdl')
-> anotherSoapFunc(34234);