RosettaCodeData/Task/SOAP/VBScript/soap.vb

7 lines
191 B
VB.net
Raw Permalink Normal View History

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