RosettaCodeData/Task/SOAP/Perl/soap.pl
2023-07-01 13:44:08 -04:00

8 lines
194 B
Perl

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);