VBS 调用webservice

Dim soapclient, result

Set soapclient = CreateObject("MSSOAP.SoapClient30")

soapclient.mssoapinit "MyTestWebService.wsdl"

result = soapclient.Add( 1 , 2 )

MsgBox result

原文地址:https://www.cnblogs.com/ryhan/p/2035883.html