- 浏览: 33368 次
- 性别:
文章分类
最新评论
我应该使用哪种wsdl样式?
参考文章:
http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/?
前言
介绍
Web 服务是通过 WSDL 文档来描述的。WSDL 绑定描述了如何把服务绑定到消息传递协议(特别是 SOAP 消息传递协议)。WSDL SOAP 绑定可以是 RPC 样式的绑定,也可以是文档样式的绑定。同样,SOAP 绑定可以有编码的用法,也可以有文字的用法。这给我们提供了四种样式/用法模型:
- RPC/编码
- RPC/文字
- 文档/编码
- 文档/文字
除了这些样式之外,还有一种样式也很常见,它称为文档/文字包装的样式,算上这一种,在创建 WSDL 文件时您就有了五种绑定样式可以从中选择。您应该选择哪一种呢?对于本文的讨论,让我们从 清单1中的 Java 方法开始,并且对其应用 JAX-RPC Java-to-WSDL 规则
Listing 1. Java method
public void myMethod(int x, float y);
RPC/编码
采用清单1中的方法并且使用您喜欢的 Java-to-WSDL 工具来运行它,指定您想让它生成 RPC/编码的 WSDL。您最后应该得到如清单2所示的 WSDL 片断。
Listing 2. RPC/encoded WSDL for myMethod
<message name="myMethodRequest"> <part name="x" type="xsd:int"/> <part name="y" type="xsd:float"/> </message> <message name="empty"/> <portType name="PT"> <operation name="myMethod"> <input message="myMethodRequest"/> <output message="empty"/> </operation> </portType> <binding .../> <!-- I won't bother with the details, just assume it's RPC/encoded. -->
现在用“5”作为参数x
的值和5.0作为参数y的值来调用此方法。我们将发送一个与清单3类似的 SOAP 消息。
Listing 3. RPC/encoded SOAP message for myMethod
<soap:envelope> <soap:body> <myMethod> <x xsi:type="xsd:int">5</x> <y xsi:type="xsd:float">5.0</y> </myMethod> </soap:body> </soap:envelope>
对于这个 RPC/编码的示例中的 WSDL 和 SOAP 消息,有许多需要注意的事项:
优点
WSDL 基本达到了尽可能地简单易懂的要求。操作名出现在消息中,这样接收者就可以很轻松地把消息发送到方法的实现。
缺点
类型编码信息(比如xsi:type="xsd:int"
)通常就是降低吞吐量性能的开销。您不能简单地检验此消息的有效性,因为只有<x
...>5</x>
and<y ...>5.0</y>
行包含在
Schema 中定义的内容;其余的
soap:body
内容都来自 WSDL定义。不兼容ws-i。
RPC/文字
用于我们的方法的 RPC/文字的 WSDL 看起来与 RPC/编码的 WSDL 几乎一样(请参见清单4)。只是绑定的用法由编码改为文字。
Listing 4. RPC/literal WSDL for myMethod
<message name="myMethodRequest">
<part name="x" type="xsd:int"/>
<part name="y" type="xsd:float"/>
</message>
<message name="empty"/>
<portType name="PT">
<operation name="myMethod">
<input message="myMethodRequest"/>
<output message="empty"/>
</operation>
</portType>
<binding .../>
<!-- I won't bother with the details, just assume it's RPC/literal. -->
What about the SOAP message for RPC/literal (seeListing 5)? Here there is a bit more of a change. The type encodings have been removed.
Listing 5. RPC/literal SOAP message for myMethod
<soap:envelope> <soap:body> <myMethod> <x>5</x> <y>5.0</y> </myMethod> </soap:body> </soap:envelope>
优点
WSDL 还是基本达到了尽可能地简单易懂的要求,操作名仍然出现在消息中,去掉了类型编码,兼容ws-i。
缺点
您仍然不能简单地检验此消息的有效性,因为只有
行包含在 Schema 中定义的内容;其余的<x ...>5</x>
and<y
...>5.0</y>
soap:body
内容都来自 WSDL 定义。
文档/编码
没有人使用这种方式,不兼容ws-i,让我们继续往下。
文档/文字
文档/文字的 WSDL 对 RPC/文字的 WSDL 作了一些更改。它们之间的不同之处显示在清单6中。
Listing 6. Document/literal WSDL for myMethod
<types> <schema> <element name="xElement" type="xsd:int"/> <element name="yElement" type="xsd:float"/> </schema> </types> <message name="myMethodRequest"> <part name="x" element="xElement"/> <part name="y" element="yElement"/> </message> <message name="empty"/> <portType name="PT"> <operation name="myMethod"> <input message="myMethodRequest"/> <output message="empty"/> </operation> </portType> <binding .../> <!-- I won't bother with the details, just assume it's document/literal. -->
The SOAP message for this WSDL is inListing 7:
Listing 7. Document/literal SOAP message for myMethod
<soap:envelope> <soap:body> <xElement>5</xElement> <yElement>5.0</yElement> </soap:body> </soap:envelope>
优点
没有编码信息,您可以在最后用任何 XML 检验器检验此消息的有效性,每项内容都定义在 Schema 中,兼容ws-i,但有限制,见缺点。
缺点
WSDL 变得有些复杂。不过,这是一个非常小的缺点,因为 WSDL 并没有打算由人来读取,SOAP 消息中缺少操作名,而如果没有操作名,发送就可能比较困难,并且有时变得不可能。WS-I 只允许soap消息中的soap:body元素出现一个子元素
.,但是你从清单7可以看到,这里出现了2个子元素。
在标准Document/literal方式下,程序员不得不处理所有的事务,包括基于XML的SOAP消息的序列化和逆序列化。标准的Document/literal不是面向RPC的,也没有定义与远程调用相关的信息,对仍然酷爱RPC调用的开发者来说无疑是欠缺的,在SOAP工具开发者看来Document/literal标准方式主要是缺乏函数的方法名。
于是微软提出了使用Document/literal模拟RPC的方法调用,定义了一种用特殊的Document/literal使用方法,有名称叫做Document/literal wrapped。其实就是故意在WSDL中定义一个复杂类型complexType节点,该节点的名称与远程调用的方法名相同,该节点把发送的所有参数再封装
文档/文字包装
在我说明文档/文字包装的样式的含义之前,让我给您展示清单8和清单9中的 WSDL 和 SOAP 消息。
Listing 8. Document/literal wrapped WSDL for myMethod
<types> <schema> <element name="myMethod"> <complexType> <sequence> <element name="x" type="xsd:int"/> <element name="y" type="xsd:float"/> </sequence> </complexType> </element> <element name="myMethodResponse"> <complexType/> </element> </schema> </types> <message name="myMethodRequest"> <part name="parameters" element="myMethod"/> </message> <message name="empty"> <part name="parameters" element="myMethodResponse"/> </message> <portType name="PT"> <operation name="myMethod"> <input message="myMethodRequest"/> <output message="empty"/> </operation> </portType> <binding .../> <!-- I won't bother with the details, just assume it's document/literal. -->
The WSDL schema now has a wrapper around the parameters (seeListing 9).
Listing 9. Document/literal wrapped SOAP message for myMethod
<soap:envelope> <soap:body> <myMethod> <x>5</x> <y>5.0</y> </myMethod> </soap:body> </soap:envelope>
注意到此 SOAP 消息看起来非常类似于 RPC/文字的 SOAP 消息。您可能会说,它看起来与 RPC/文字的 SOAP 消息是完全一样的,不过,这两种消息之间存在着微妙的区别。在 RPC/文字的 SOAP 消息中,<soap:body>
的<myMethod>
子句是操作的名称。在文档/文字包装的 SOAP 消息中,<myMethod>
子句是单个输入消息的组成部分引用的元素的名称。因此,包装的样式具有这样的一个特征,输入元素的名称与操作的名称是相同的。此样式是把操作名放入
SOAP 消息的一种巧妙方式。
文档/文字包装的样式的特征有:
输入消息只有一个组成部分。
该部分就是一个元素。
该元素有与操作相同的名称。
该元素的复杂类型没有属性。
下面是这种方法的优点和缺点:
优点
没有编码信息,出现在 soap:body 中的每项内容都是由 Schema 定义的,所以您现在可以很容易地检验此消息的有效性,方法名又出现在 SOAP 消息中。
缺点
WSDL 甚至更复杂,但是这仍然是一个非常小的缺点,如您所见,文档/文字包装的样式还是有一些缺点,不过与优点比起来,它们都显得无足轻重。
Why not use document/literal wrapped all the time?
So far, this article has given the impression that the document/literal wrapped style is the best approach. Very often that's true. But there are still cases where you'd be better off using another style.
Reasons to use document/literal non-wrapped
If you have overloaded operations, you cannot use the document/literal wrapped style.
Imagine that, along with the method you've been using all along, you have the additional method inListing 10.
Listing 10. Problem methods for document/literal wrapped
public void myMethod(int x, float y);
public void myMethod(int x);
A note about overloaded operations
WSDL 2.0 will not allow overloaded operations. This is unfortunate for languages like the Java language whichdoallow them. Specs like JAX-RPC will have to define a name mangling scheme to map overloaded methods to WSDL. WSDL 2.0 merely moves the problem from the WSDL-to-SOAP mapping to the WSDL-to-language mapping.
WSDL allows overloaded operations. But when you add the wrapped pattern to WSDL, you require an element to have the same name as the operation, and you cannot have two elements with the same name in XML. So you must use the document/literal, non-wrapped style or one of the RPC styles.
Reasons to use RPC/literal
Since the document/literal, non-wrapped style doesn't provide the operation name, there are cases where you'll need to use one of the RPC styles. For instance, say you have the set of methods inListing 11.
Listing 11. Problem methods for document/literal non-wrapped
public void myMethod(int x, float y);
public void myMethod(int x);
public void someOtherMethod(int x, float y);
Now assume that your server receives the document/literal SOAP message that you saw back inListing
7. Which method should the server dispatch to? All you know for sure is that it's notmyMethod(int
x)
because the message has two parameters and this method requires one. It could be either of the other two methods. With the document/literal style, you have no way to know which one.
Instead of the document/literal message, assume that the server receives an RPC/literal message such as the one inListing
5. With this message it's fairly easy for a server to decide which method to dispatch to. You know the operation name ismyMethod, and you
know you have two parameters, so it must bemyMethod(int
x, float y)
.
Reasons to use RPC/encoded
The primary reason to prefer the RPC/encoded style is for data graphs. Imagine that you have a binary tree whose nodes are defined inListing 12.
Listing 12. Binary tree node schema
<complexType name="Node"> <sequence> <element name="name" type="xsd:string"/> <element name="left" type="Node" xsd:nillable="true"/> <element name="right" type="Node" xsd:nillable="true"/> </sequence> </complexType>
With this node definition, you could construct a tree whose root node -- A -- points to node B through both its left and right links (seeFigure 1).
Figure 1. Encoded tree.
The standard way to send data graphs is to use the href tag, which is part of the RPC/encoded style (Listing 13).
Listing 13. The RPC/encoded binary tree
<A> <name>A</name> <left href="12345"/> <right href="12345"/> </A> <B id="12345"> <name>B</name> <left xsi:nil="true"/> <right xsi:nil="true"/> </B>
Under any literal style, the href attribute is not available, so the graph linkage is lost (seeListing 14andFigure 2). You still have a root node, A, which points to a node B to the left and another node B to the right. These B nodes are equal, but they are not the same node. Data have been duplicated instead of being referenced twice.
Listing 14. The literal binary tree
<A> <name>A</name> <left> <name>B</name> <left xsi:nil="true"/> <right xsi:nil="true"/> </left> <right> <name>B</name> <left xsi:nil="true"/> <right xsi:nil="true"/> </right> </A>
Figure 2. Literal tree
There are various ways you can do graphs in literal styles, but there are no standard ways; so anything you might do would probably not interoperate with the service on the other end of the wire.
SOAP response messages
So far I have been discussing request messages. But what about response messages? What do they look like? By now it should be clear to you what the response message looks like for a document/literal message. The contents of thesoap:body
are
fully defined by a schema, so all you have to do is look at the schema to know what the response message looks like. For instance, seeListing
15for the response for the WSDL inListing
8.
Listing 15. document/literal wrapped response SOAP message for myMethod
<soap:envelope> <soap:body> <myMethodResponse/> </soap:body> </soap:envelope>
But what is the child of thesoap:body
for
the RPC style responses? The WSDL 1.1 specification is not clear. But WS-I comes to the rescue. WS-I's Basic Profile dictates that in the RPC/literal response message, the name of the child ofsoap:body
is
"... the correspondingwsdl:operation
name
suffixed with the string 'Response'." Surprise! That's exactly what the conventional wrapped pattern's response element is called. SoListing
15applies to the RPC/literal message as well as the document/literal wrapped message. (Since RPC/encoded is not WS-I compliant, the WS-I Basic Profile doesn't mention what an RPC/encoded response looks like, but you can assume the same convention applies
here that applies everywhere else.) So the contents of response messages are not so mysterious after all.
Summary
There are four binding styles (there are really five, but document/encoded is meaningless). While each style has its place, under most situations the best style is document/literal wrapped.
相关推荐
Web 服务描述语言(WSDL,Web Service Description Language)是一种XML格式,用于定义网络服务的接口,包括服务的位置、操作及如何与这些服务交互。在WSDL文档中,SOAP(Simple Object Access Protocol)绑定部分...
WSDL,全称为Web Services Description Language,是用于描述Web服务的一种XML格式。它定义了服务的接口,包括服务提供的操作、消息格式、通信协议以及服务的位置。WSDL文件是Web服务客户端和服务提供者之间进行交互...
【使用XSLT转换Web服务WSDL文档的技巧和诀窍】 在Web服务领域,WSDL(Web Services Description Language)文档扮演着至关重要的角色,它用XML格式详细描述了服务接口和实例的位置。WSDL的XML表示使得各种开发工具...
### WSDL绑定样式各种组合优劣势比较 #### WSDL与SOAP简介 WSDL(Web Services Description Language),即Web服务描述语言,是一种基于XML的标准语言,用于描述Web服务及其交互方式。它提供了关于如何访问Web服务...
`wsdl2java`提供了丰富的命令行参数,可以定制生成代码的样式、数据绑定机制、异常处理等。例如: - `-frontend`:选择不同的前端处理器,如JAXWS,用于控制生成的代码风格。 - `-d`:指定输出目录,生成的Java代码...
然而,为了实现真正的互操作性,不仅需要一种通用的数据交换格式,还需要一种描述服务接口和绑定细节的语言,这就是WSDL(Web Services Description Language)的由来。 WSDL通过提供一个统一的方法来描述服务接口...
通过示例说明document/literal、document/literal(wrapped)、rpc/encoded、rpc/literal样式的web服务对应的soap消息格式,对于理解webservice有很大好处,尤其是根据wsdl构造soap消息,非常有价值。
Web Service 描述语言(WSDL,Web Service Description Language)是一种基于XML的语言,专门用来定义Web服务的接口。WSDL文件提供了详细的规范,让服务提供者和服务消费者能够理解如何交互,从而促进不同系统间的...
2. 使用`WSDLReader`类加载WSDL文件,然后使用`readWSDL()`方法解析文件内容。 3. 解析后的WSDL模型可以通过`Definition`对象访问,这个对象包含了所有关于服务的信息,如服务、端点、消息、操作等。 4. 遍历`...
在IT行业中,Web服务是应用程序之间进行通信的一种标准方式,而WSDL(Web Services Description Language)则是一种XML格式,用于定义Web服务的具体接口。本文将详细介绍如何使用Eclipse WTP工具创建WSDL文件以及...
Web服务描述语言(WSDL,Web Services Description Language)是一种XML格式,用于定义网络服务的接口。它是理解Web服务的关键组成部分,让服务消费者能够了解如何与服务进行交互。在这个例子中,我们将深入探讨WSDL...
在IT行业中,Web Service是一种基于XML的通信标准,它允许不同的应用程序之间进行数据交换,而不管它们是由何种编程语言或操作系统构建的。WSDL(Web Services Description Language)是描述Web Service接口的语言,...
Web服务描述语言(WSDL,Web Services Description Language)是一种XML格式,用于定义网络服务的接口。它是WebService调用过程中的核心规范,允许服务提供者声明服务的可用操作、消息格式以及如何通过网络进行通信...
Web服务(Web Services)是一种基于互联网的、平台独立的交互方式,它允许不同的应用程序之间进行数据交换和功能调用。WSDL(Web Services Description Language)是用于定义Web服务接口的标准XML格式,它描述了服务...
本文档主要针对的是开发者,详细介绍了如何利用官方提供的WSDL(Web Service Description Language)进行集成开发,包括页面设置、流程接口方法、请求参数说明以及具体的调用实例,旨在帮助开发者更高效地对接泛微OA...
目前Web服务的相关标准是WSDL【Web服务描述语言】,一种标准的类似XML Schema的语言,用它来详细说明Web服务和SOAP【简单对象访问协议】。两份报告:研究报告,实验报告 研究报告包含内容: (1)概述 (2)问题...
Document Literal风格是一种不依赖于WSDL类型系统的调用方式,它直接处理XML文档。 在Axis2中,我们可以直接构建SOAP消息并发送请求,如下: ```java import org.apache.axis2.AxisFault; import org.apache.axis2...
- **定义列表**:使用`<dl>`标签定义,项名称使用`<dt>`标签定义,项描述使用`<dd>`标签定义。 ##### 9. HTML `<div>` 和 `<span>` 元素 - `<div>`元素:块级元素,常用于页面布局。 - `<span>`元素:内联元素,常...
Web Service Description Language(WSDL)是一种XML格式的规范,用于定义网络服务的接口。它详细描述了服务的位置、提供的操作以及如何调用这些操作。WSDL文件通常包含了服务的输入、输出消息类型,以及服务绑定到...
WSDL是一种XML格式,用于定义网络服务的接口,包括服务的位置、使用的消息协议以及如何调用这些服务。Disco Router 作为这个系统的核心组件,它以servlet的形式运行,使得WSDL服务能够被有效地管理和访问。 Disco ...