首先安装Microsoft SoapToolkit,因为VB自身不支持WebService,需要安装SoapTookit后能调用WebService。
然后在VB6中点菜单“工程”—“引用”-把“Microsoft Soap Type Libray v3.0” 打上钩就可以了。
Dim mysoap As New SoapClient30
mysoap.MSSoapInit ("https://samool.com/soap/Webservice.asmx?WSDL")
Label1.Caption = mysoap.helloWorld(Text1.Text)
按上面方法直接调用WebService函数就OK了。