RosettaCodeData/Task/SOAP/Go/soap-2.go
2023-07-01 13:44:08 -04:00

7 lines
232 B
Go

import soap
procedure main(A)
soap := SoapClient(A[1] | "http://example.com/soap/wsdl") # Allow override of default
write("soapFunc: ",soap.call("soapFunc"))
write("anotherSoapFunc: ",soap.call("anotherSoapFunc"))
end