RosettaCodeData/Task/SOAP/VBScript/soap.vbs

7 lines
191 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Dim client
Dim result
Set client = CreateObject("MSSOAP.SoapClient")
client.MSSoapInit "http://example.com/soap/wsdl"
result = client.soapFunc("hello")
result = client.anotherSoapFunc(34234)