教程集 www.jiaochengji.com
教程集 >  脚本编程  >  Vb.net  >  正文 Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web_Servic

Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web_Servic

发布时间:2018-09-10   编辑:jiaochengji.com
教程集为您提供Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web,Servic等资源,欢迎您收藏本站,我们将为您提供最新的Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web,Servic资源
  让我们来研究一下WSDL文件,看看它的结构,以及如何工作。请注意这是一个非常简单的WSDL文档实例。我们的意图只是说明它最显著的特征。以下的内容中包括更加详细的讨论。
<?xml version="1.0" encoding="UTF-8" ?>
<definitions name="FooSample"
 targetNamespace="http://tempuri.org/wsdl/"
 xmlns:wsdlns="http://tempuri.org/wsdl/"
 xmlns:typens="http://tempuri.org/xsd"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:stk="http://schemas.microsoft.com/soap-toolkit/wsdl-extension"
 xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace="http://tempuri.org/xsd"
  xmlns="http://www.w3.org/2001/XMLSchema"
  xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
  elementFormDefault="qualified" >
</schema>
</types>
<message name="Simple.foo">
 <part name="arg" type="xsd:int"/>
</message>
<message name="Simple.fooResponse">
 <part name="result" type="xsd:int"/>
</message>
<portType name="SimplePortType">
 <operation name="foo" parameterOrder="arg" >
  <input message="wsdlns:Simple.foo"/>
  <output message="wsdlns:Simple.fooResponse"/>

您可能感兴趣的文章:
Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web_Servic
Web Service描述语言 WSDL 详解(1)--为什么使用WSDL?[转]-Web_Serv
详解php soap实现web service接口服务
PHP调用Webservice经典实例
XML Web Service 基础 (转微软MSDN)-Web_Service开发-.NET教程-
基础教程介绍——什么是SOA
php如何处理wsdl
使用php5的SoapServer扩展创建web service(1)
php使用soap的例子
使用pear::soap创建web服务的步骤

[关闭]
~ ~