WebService series Teaching (9)-How to call WebService (Vb6.0,vbscript)

Source: Internet
Author: User
Tags wsdl
Vbscript|web 4. 8 using the vb6.0 call
Need to download MsSoapToolkit20.exe
Add Reference: Microsoft Soap Type Library
Location: "C:\Program Files\Common Files\mssoap\binaries\ MSSOAP1.dll"
Call Method:
Dim cc as New mssoaplib.soapclient
Routines:
New Project  Standard Exe add 3 TextBox controls, Text1,text2,text3 Add a button control Command1
The code is as follows:
Option Explicit
Dim cc as New mssoaplib.soapclient
Private Sub Command1_Click ()
Cc.mssoapinit "Http://192.168.0.4/yundan/Service1.asmx?WSDL"
Me.Text3.Text = Cc.test (CInt (Text1.Text), CInt (Text2.text))
End Sub
4. 9 using VBScript to invoke
Need to download MsSoapToolkit20.exe
Reference: Mssoap.soapclient
Routines:
Option Explicit
Const Wsdl_url = "HTTP://192.168.0.4/YUNDAN/SERVICE1.WSDL"
WScript.Echo "Connecting:" & Wsdl_url
Dim Calc
Set Calc = CreateObject ("Mssoap.") SoapClient ")
Calc.mssoapinit Wsdl_url
Dim Answer
Answer = Calc.test (14,28)
WScript.Echo "14+28=" & Answer
Save it as a Domo.vbs file and double-click to run it directly.


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.