RosettaCodeData/Task/SOAP/Perl/soap.pl

9 lines
194 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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);