1、逐个分析wsdl文件中的元素:

<types>:数据类型定义的容器,一般使用 xml schema类型系统。

<message>:通信消息的数据结构的抽象化定义,使用<types>定义的数据类型来定义整个消息的数据结构。(portType相当于一个类或者接口)

<operation>:对服务中所支持的操作的抽象描述,一般单个<operation>描述了一个访问入口的请求/响应消息对。

<portType>:服务访问点所支持的操作的抽象集合,相当于一个类。

<binding>:特定端口类型(portType)具体协议和数据格式规范的绑定(绑定这里是个名词)。

<port>:  具体的绑定(binding)与web地址组合的单个访问点。

<service>:相关服务访问点(port)的集合。

2、关系图(此图非原创)                  

3、例子讲解

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <wsdl:definitions
  3. targetNamespace="http://com.liuxiang.xfireDemo/HelloService"
  4. xmlns:tns="http://com.liuxiang.xfireDemo/HelloService"
  5. xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
  6. xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"
  7. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  8. xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/"
  9. xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding"
  10. xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/"
  11. xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  12. <wsdl:types>
  13. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  14. attributeFormDefault="qualified" elementFormDefault="qualified"
  15. targetNamespace="http://com.liuxiang.xfireDemo/HelloService">
  16. <xsd:element name="sayHellorequest">
  17. <xsd:complexType>
  18. <xsd:sequence>
  19. <xsd:element maxOccurs="1" minOccurs="1"
  20. name="name" nillable="true" type="xsd:string" />
  21. </xsd:sequence>
  22. </xsd:complexType>
  23. </xsd:element>
  24. <xsd:element name="sayHelloResponse">
  25. <xsd:complexType>
  26. <xsd:sequence>
  27. <xsd:element maxOccurs="1" minOccurs="1"
  28. name="out" nillable="true" type="xsd:string" />
  29. </xsd:sequence>
  30. </xsd:complexType>
  31. </xsd:element>
  32. </xsd:schema>
  33. </wsdl:types>
  34. <wsdl:message name="sayHelloResponse">
  35. <wsdl:part name="parameters" element="tns:sayHelloResponse" />
  36. </wsdl:message>
  37. <wsdl:message name="sayHelloRequest">
  38. <wsdl:part name="parameters" element="tns:sayHelloRequest" />
  39. </wsdl:message>
  40. <wsdl:portType name="HelloServicePortType">
  41. <wsdl:operation name="sayHellorequest">
  42. <wsdl:input name="sayHelloRequest"
  43. message="tns:sayHelloRequest" />
  44. <wsdl:output name="sayHelloResponse"
  45. message="tns:sayHelloResponse" />
  46. </wsdl:operation>
  47. </wsdl:portType>
  48. <wsdl:binding name="HelloServiceHttpBinding"
  49. type="tns:HelloServicePortType">
  50. <wsdlsoap:binding style="document"
  51. transport="http://schemas.xmlsoap.org/soap/http" />
  52. <wsdl:operation name="sayHello">
  53. <wsdlsoap:operation soapAction="" />
  54. <wsdl:input name="sayHelloRequest">
  55. <wsdlsoap:body use="literal" />
  56. </wsdl:input>
  57. <wsdl:output name="sayHelloResponse">
  58. <wsdlsoap:body use="literal" />
  59. </wsdl:output>
  60. </wsdl:operation>
  61. </wsdl:binding>
  62. <wsdl:service name="HelloService">
  63. <wsdl:port name="HelloServiceHttpPort"
  64. binding="tns:HelloServiceHttpBinding">
  65. <wsdlsoap:address
  66. location="http://localhost:8080/xfire/services/HelloService" />
  67. </wsdl:port>
  68. </wsdl:service>
  69. </wsdl:definitions>

4、逐部分介绍

<definition>

  1. <wsdl:definitions
  2. targetNamespace="http://com.liuxiang.xfireDemo/HelloService"
  3. xmlns:tns="http://com.liuxiang.xfireDemo/HelloService"
  4. xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
  5. xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"
  6. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  7. xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/"
  8. xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding"
  9. xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/"
  10. xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  11. </wsdl:definitions>

主要是提供一个命名空间、整个wsdl文档中用到的xml规范。一般可以通用。

  1. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:变量名="协议源",定义的这个变量名,可以在后面定义具体参数类型时用到。

<type>

  1. <wsdl:types>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. attributeFormDefault="qualified" elementFormDefault="qualified"
  4. targetNamespace="http://com.liuxiang.xfireDemo/HelloService">
  5. <xsd:element name="sayHelloRequest">
  6. <xsd:complexType>
  7. <xsd:sequence>
  8. <xsd:element maxOccurs="1" minOccurs="1"
  9. name="name" nillable="true" type="xsd:string" />
  10. </xsd:sequence>
  11. </xsd:complexType>
  12. </xsd:element>
  13. <xsd:element name="sayHelloResponse">
  14. <xsd:complexType>
  15. <xsd:sequence>
  16. <xsd:element maxOccurs="1" minOccurs="1"
  17. name="out" nillable="true" type="xsd:string" />
  18. </xsd:sequence>
  19. </xsd:complexType>
  20. </xsd:element>
  21. </xsd:schema>
  22. </wsdl:types>

这部分可以单独定义为一个文件,因为有时候需要定义的元素会比较多,单独写一个文件,用import引入到需要用的wsdl文件。

这里定义了两个元素: sayHelloRequest/sayHelloResponse,就相当于在写一个普通类时定义变量或者对象引用,此处类似于对象引用。

此处这两个元素都是复杂类型,sequence定义该复杂类型里面的属性变量。

<message>

  1. <wsdl:message name="sayHelloResponse">
  2. <wsdl:part name="parameters" element="tns:sayHelloResponse" />
  3. </wsdl:message>
  4. <wsdl:message name="sayHelloRequest">
  5. <wsdl:part name="parameters" element="tns:sayHelloRequest" />
  6. </wsdl:message>

消息格式的抽象定义。

<portType>

  1. <wsdl:portType name="HelloServicePortType">
  2. <wsdl:operation name="sayHelloRequest">
  3. <wsdl:input name="sayHelloRequest"
  4. message="tns:sayHelloRequest" />
  5. <wsdl:output name="sayHelloResponse"
  6. message="tns:sayHelloResponse" />
  7. </wsdl:operation>
  8. </wsdl:portType>

<portType>定义了抽象接口,<operation>定义了接口里面的方法,input表示输入参数、output表示输出参数。

这里刚开始理解起来比较绕,使用wsdl的有两类人:客户端、服务端。

写好wsdl后,需要使用工具自动生成Java代码(一般通过cxf命令生成),客户端和服务端的代码稍有区别:

服务端: public sayHelloResponse sayHelloRequest(sayHelloRequest parameters)//

客户端: public sayHelloResquest sayHelloRequest(sayHelloResponse parameters)//

<binding>

binding元素将一个抽象portType映射到一组具体协议(SOAO和HTTP)、消息传递样式、编码样式。通常binding元素与协议专有的元素和在一起使用,本文中的例子:

  1. <wsdl:binding name="HelloServiceHttpBinding"
  2. type="tns:HelloServicePortType">
  3. <wsdlsoap:binding style="document"
  4. transport="http://schemas.xmlsoap.org/soap/http" />
  5. <wsdl:operation name="sayHello">
  6. <wsdlsoap:operation soapAction="" />
  7. <wsdl:input name="sayHelloRequest">
  8. <wsdlsoap:body use="literal" />
  9. </wsdl:input>
  10. <wsdl:output name="sayHelloResponse">
  11. <wsdlsoap:body use="literal" />
  12. </wsdl:output>
  13. </wsdl:operation>
  14. </wsdl:binding>

service元素和port元素

service元素包含一个或者多个port元素,其中每个port元素表示一个不同的Web服务。

port元素将URL赋给一个特定的binding,甚至可以使两个或者多个port元素将不同的URL赋值给相同的binding。

文档中的例子:

  1. <wsdl:service name="HelloService">
  2. <wsdl:port name="HelloServiceHttpPort"
  3. binding="tns:HelloServiceHttpBinding">
  4. <wsdlsoap:address
  5. location="http://localhost:8080/xfire/services/HelloService" />
  6. </wsdl:port>
  7. </wsdl:service>

这部分是具体的Web服务的定义,在这个名为HelloService的Web服务中,提供了一个服务访问入口,

访问地址是http://localhost:8080/xfire/services/HelloService,使用的消息模式是由前面的binding所定义的。

以后慢慢完善之。。。

wsdl透明解析的更多相关文章

  1. 学习 WebService 第二步:知识准备——WSDL文件解析

    原文地址:https://www.cnblogs.com/yzw23333/p/7245104.html Web service中一个 WSDL 对应一个 web service地址. 可以想象成一个 ...

  2. WSDL实例解析

    WSDL的主要文档元素 WSDL文档可以分为两部分.顶部分由抽象定义组成,而底部分则由具体描述组成.抽象部分以独立于平台和语言的方式定义SOAP消息,它们并不包含任何随 机器或语言而变的元素.这就定义 ...

  3. webservice 之 WSDL的解析

    先看一个wsdl, <?xml version="1.0" encoding="UTF-8" standalone="no"?> ...

  4. wsdl 结构解析

    webservice的跨平台特性要求它必须有某种手段来对服务进行自我描述,使不同的语言能正确理解如何调用该服务.webservice通过WSDL(Web Services Description La ...

  5. 创建WSDL项目

    WSDL文件是测试基于soap的服务,他们定义实际暴露服务和要求SoapUI生成测试,要求信息,验证和MockServices. SoapUI支持最广泛使用的1.1版本的WSDL和SOAP 1.1和1 ...

  6. WSDL中文版——详解

    为什么使用WSDL? 像Internet协议之类的标准有没有为权威所利用,或者人们这样看待它是因为顺之所获的好处远远超出了代价?曾经有许多试图建立的标准都流产了.有时候,那些还没有普遍使用的标准甚至由 ...

  7. webservice------UDDI SOAP WSDL 之间的关系

    [  真的是服了一些博客.....啰里啰唆的将一堆==   根本不知道讲的是什么 ... 在描述一个定义之前  (不如先通俗的讲它是干什么的)] SOAP(Simple Object Access P ...

  8. java环境下wsimport编译Wsdl

    使用命令提示符进行操作:首先CD至java jdk/bin目录下.先bin目录下执行以下命令即可: -----------------------------服务需求放置的位置------------ ...

  9. SOAP、WSDL、 UDDI之间的关系

    SOAP(Simple Object Access Protocol) 简单对象访问协议: WSDL(Web Services Description Language) Web服务描述语言: UDD ...

随机推荐

  1. Android 匿名共享内存C++接口分析

    在上一篇Android 匿名共享内存C接口分析中介绍了Android系统的匿名共享内存C语言访问接口,本文在前文的基础上继续介绍Android系统的匿名共享内存提供的C++访问接口.在C++层通过引入 ...

  2. OS笔记047代理传值和block传值

    在两个不同的控制器之间传递数据,可以使用代理传值或者block传值. 例子是一个简单通讯录. 主界面如下: 添加联系人界面 查看/编辑联系人界面:默认是查看模式,点击编辑后进入编辑模式 编辑模式 数据 ...

  3. Page_Prerender介绍

    它是asp.net页面的OnPreRender事件的处理程序.此事件是定义在Control类中的,因为Page类(aspx页面的基类)继承的是System.Web.UI.WebControl类,而We ...

  4. 学习笔记--C#特性Attribute(一)

    这个框框好烦人啊,删不掉 一.背景 [serializable] public class Person(){} 这是我第一次看到特性(Attribute),那时我还不知道这是什么,怎么会有这种写法, ...

  5. springmvc定时器

    用到的jar包: aopalliance-1.0.jar commons-logging-1.1.3.jar spring-aop-3.2.4.RELEASE.jar spring-beans-3.2 ...

  6. 共享内存(shared memory)

    共享内存指在多处理器的计算机系统中,可以被不同中央处理器(CPU)访问的大容量内存.由于多个CPU需要快速访问存储器,这样就要对存储器进行缓存(Cache). 任何一个缓存的数据被更新后,由于其他处理 ...

  7. PCB成型製程介紹

    PCB成型製程在電子構裝中所扮演的角色 下圖是電腦主機的內部組成 我們將以插在主機板上的一片 USB擴充卡來說明PCB成型製 程在電子構裝中所扮演的角色 PCB成型製程的子製程 USB擴充卡要插入主機 ...

  8. A20 GPIO中断类型差别结果迥异的问题思考

    A20GPIO中断类型差别结果迥异的问题思考 最近在使用全志A20做开发时,发现在处理中断的时候,用电平触发模式,报中断比较乱,用边沿触发则很稳定,不会乱报.笔者感到比较困惑,笔者用电平触发写的cod ...

  9. Noip2013错误避免

    很多的时候,我们会说,这道题我会做,算法想出来了,但是这里那里少了一些判断,导致一分未得,或是说变量名错误,或者说干脆是文件名错误.这些都不是理由,如果火箭发射半空爆炸,可以说是控制器中一个运算符错误 ...

  10. iOS6与iOS7屏幕适配技巧

    一.没有包装任何 导航控制器 或者 UITabBarController 1.控制器的view是UIScrollView\UITableView\UICollectionView时(控制器是UITab ...