Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  Vb.net  >  正文 Web Service描述语言 WSDL 详解(2)--WSDL文件示例[转]-Web_Servic

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

发布时间:2018-09-10   编辑:www.jquerycn.cn
jquery中文网为您提供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
WSDL 教程
WSDL 简介
Web Service描述语言 WSDL 详解(1)--为什么使用WSDL?[转]-Web_Serv
WSDL 文档
SOAP 总结
XML Schema 总结
详解php soap实现web service接口服务
Web Services 平台元素
Web Services 总结

[关闭]