webservice系列教学(17)-例程用到的wsdl文件等

web

《Service1.asmx》
<%@ WebService Language="vb" Codebehind="Service1.asmx.vb" Class="yundan.Service1" %>
《Service1.asmx.vb》
Imports System.Web.Services
<WebService(Namespace := "http://tempuri.org/")> _
Public Class Service1
    Inherits System.Web.Services.WebService
#Region " Web 服务设计器生成的代码 "

    Public Sub New()
        MyBase.New()

        '该调用是 Web 服务设计器所必需的。
        InitializeComponent()

        '在 InitializeComponent() 调用之后添加您自己的初始化代码

    End Sub

    'Web 服务设计器所必需的
    Private components As System.ComponentModel.IContainer

    '注意:以下过程是 Web 服务设计器所必需的
    '可以使用 Web 服务设计器修改此过程。
    '不要使用代码编辑器修改它。
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        components = New System.ComponentModel.Container()
    End Sub

    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        'CODEGEN: 此过程是 Web 服务设计器所必需的
        '不要使用代码编辑器修改它。
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

#End Region
<WebMethod()> Public Function test(ByVal a As Integer, ByVal b As Integer) As Integer
        Return a + b
    End Function
end class
《Service1.wsdl》
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://tempuri.org/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:element name="test">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="a" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="b" type="s:int" />
          </s:sequence>
        </s:complexType>
      <s:element name="string" nillable="true" type="s:string" />
      <s:element name="ArrayOfString" nillable="true" type="s0:ArrayOfString" />
      <s:element name="boolean" type="s:boolean" />
      <s:element name="int" type="s:int" />
  <message name="testSoapIn">
    <part name="parameters" element="s0:test" />
  </message>
  <message name="testSoapOut">
    <part name="parameters" element="s0:testResponse" />
  </message>
  <message name="testHttpGetIn">
    <part name="a" type="s:string" />
    <part name="b" type="s:string" />
  </message>
  <message name="testHttpGetOut">
    <part name="Body" element="s0:int" />
  </message>
  <message name="testHttpPostIn">
    <part name="a" type="s:string" />
    <part name="b" type="s:string" />
  </message>
  <message name="testHttpPostOut">
    <part name="Body" element="s0:int" />
  </message>
    <operation name="test">
      <input message="s0:testSoapIn" />
      <output message="s0:testSoapOut" />
    </operation>
<portType name="Service1HttpGet">
    <operation name="test">
      <input message="s0:testHttpGetIn" />
      <output message="s0:testHttpGetOut" />
    </operation>
</portType>
<portType name="Service1HttpPost">
    <operation name="test">
      <input message="s0:testHttpPostIn" />
      <output message="s0:testHttpPostOut" />
    </operation>
  </portType>
<binding name="Service1Soap" type="s0:Service1Soap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    <operation name="test">
      <soap:operation soapAction="http://tempuri.org/test" style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
  </binding>
  <binding name="Service1HttpGet" type="s0:Service1HttpGet">
    <http:binding verb="GET" />
  <operation name="test">
      <http:operation location="/test" />
      <input>
        <http:urlEncoded />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
<binding name="Service1HttpPost" type="s0:Service1HttpPost">
    <http:binding verb="POST" />
    <operation name="test">
      <http:operation location="/test" />
      <input>
        <mime:content type="application/x-www-form-urlencoded" />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
  <service name="Service1">
    <port name="Service1Soap" binding="s0:Service1Soap">
      <soap:address location="http://192.168.0.4/yundan/Service1.asmx" />
    </port>
    <port name="Service1HttpGet" binding="s0:Service1HttpGet">
      <http:address location="http://192.168.0.4/yundan/Service1.asmx" />
    </port>
    <port name="Service1HttpPost" binding="s0:Service1HttpPost">
      <http:address location="http://192.168.0.4/yundan/Service1.asmx" />
    </port>
  </service>
</definitions>

时间: 2025-01-21 16:33:42

webservice系列教学(17)-例程用到的wsdl文件等的相关文章

webservice系列教学(6)-如何调用webservice(C#,)

web 4. 5使用C#调用无需下载任何组件新建项目Visual C#项目windows应用程序.在解决方案资源管理器中添加web引用,输入wsdl文件所在地址.将web引用改名.yundan.(service_name)即可引用*需引用System.web.services*例程:using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windo

webservice系列教学(8)-如何调用webservice(vb.net)

web 4.7使用vb.net调用无需下载任何组件新建项目Visual Basic项目windows应用程序.在解决方案资源管理器中添加web引用,输入wsdl文件所在地址.将web引用改名为yundan.yundan.(service_name)即可引用*需引用System.web.services*例程:    Public Class Form1        Inherits System.Windows.Forms.Form#Region " Windows 窗体设计器生成的代码

webservice系列教学(3)-如何调用webservice

web 4.如何调用webservice4.0 webservice的调用过程    客户端:取得服务端的服务描述文件WSDL,解析该文件的内容,了解服务端的服务信息,以及调用方式.根据需要,生成恰当的SOAP请求消息(指定调用的方法,已经调用的参数),发往服务端.等待服务端返回的SOAP回应消息,解析得到返回值. 服务端:生成服务描述文件,以供客户端获取.接收客户端发来的SOAP请求消息,解析其中的方法调用和参数格式.根据WSDL和WSML的描述,调用相应的COM对象来完成指定功能,并把返回值

webservice系列教学(1)

web 关键字: SOAP  XML  XSD  WSDL1.  什么是webservice从表面上看,Web service 就是一个应用程序,它向外界暴露出一个能够通过Web进行调用的API.这就是说,你能够用编程的方法通过Web来调用这个应用程序.对Web service 更精确的解释: Web services是建立可互操作的分布式应用程序的新平台.作为一个Windows程序员,你可能已经用COM或DCOM建立过基于组件的分布式应用程序.COM是一个非常好的组件技术,但是我们也很容易举出

webservice系列教学(5)-如何调用webservice(Jscript,vbscript)

js|jscript|vbscript|web 4. 3 在asp中使用Jscript调用需下载msSoapToolkit20.exe引用:MSSOAP.SoapClient    例程:    <%@ LANGUAGE = JScript %><HTML><HEAD><TITLE>webservice演示</TITLE></HEAD><BODY>    <%         var WSDL_URL = "

webservice系列教学(7)-如何调用webservice(javascript)

需下载msSoapToolkit20.exe引用:MSSOAP.SoapClient    例程:var WSDL_URL = "http://192.168.0.4/yundan/service1.wsdl"WScript.echo("Connecting: " + WSDL_URL)var Calc = WScript.CreateObject("MSSOAP.SoapClient")Calc.mssoapinit(WSDL_URL, &qu

webservice系列教学(9)-如何调用webservice(vb6.0,vbscript)

vbscript|web 4.8使用vb6.0调用需下载msSoapToolkit20.exe添加引用:Microsoft Soap Type Library 位置:"C:\Program Files\Common Files\MSSoap\Binaries\ MSSOAP1.dll"    调用方法:    Dim cc As New MSSOAPLib.SoapClient    例程:    新建工程标准EXE添加3个textbox控件,text1,text2,text3添

webservice系列教学(4)-如何调用webservice(pb,java)

web 4.1 使用PowerBuilder调用    适用版本8.0 需下载Bulletin Web Services Toolkit 4.14.2使用java调用需要下载apache soap.下载地址:http://xml.apache.org/soap/index.html导入:import org.apache.soap.*;import org.apache.soap.rpc.*;例程:import java.io.*;import java.util.*;import java.n

webservice系列教学(2)

web 3.Webservice的技术特点长项一: 跨防火墙的通信 如果应用程序有成千上万的用户,而且分布在世界各地,那么客户端和服务器之间的通信将是一个棘手的问题.因为客户端和服务器之间通常会有防火墙或者代理服务器.在这种情况下,使用DCOM就不是那么简单,通常也不便于把客户端程序发布到数量如此庞大的每一个用户手中.传统的做法是,选择用浏览器作为客户端,写下一大堆ASP页面,把应用程序的中间层暴露给最终用户.这样做的结果是开发难度大,程序很难维护. 举个例子,在应用程序里加入一个新页面,必须先