9 lines
194 B
Perl
9 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);
|