Hello World
Java技术学习
posts - 17,  comments - 7,  trackbacks - 0

Web Service描述语言 WSDL 详解 3

<portType>和<operation>元素
PortType定义了一些抽象的操作。PortType中的operation元素定义了调用PortType中所有方法的语法,每一个operation元素声明了方法的名称、参数(使用<message>元素)和各自的类型(<part>元素要在所有<message>中声明)。

  在一篇WSDL文档中可以有几个<PortType>元素,每一个都和一些相关操作放在一起,就和COM和一组操作的接口相似。

  在<operation>元素中,可能会有至多一个<input>元素,一个<output>元素,以及一个<fault>元素。三个元素各有一个名字和一个消息属性。

  <input>, <output>, <fault>元素属性的名字有何含义呢?它们可以用来区别两个同名操作(重载)。例如,看下面两个C函数:

void  foo( int  arg);
void  foo( string  arg);
这种重载在WSDL中可以这样表示
<?xml version="1.0" encoding="UTF-8" ?>
<definitions name="fooDescription"
 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="foo1">
 
<part name="arg" type="xsd:int"/>
</message>

<message name="foo2">
 
<part name="arg" type="xsd:string"/>
</message>

<portType name="fooSamplePortType">
<operation name="foo" parameterOrder="arg " >
 
<input name="foo1" message="wsdlns:foo1"/>
</operation>
<operation name="foo" parameterOrder="arg " >
 
<input name="foo2" message="wsdlns:foo2"/>
</operation>
</portType>

<binding name="fooSampleBinding" type="wsdlns:fooSamplePortType">
<stk:binding preferredEncoding="UTF-8" />
<soap:binding style="rpc" 
transport
="http://schemas.xmlsoap.org/soap/http"/>
<operation name="foo">
<soap:operation soapAction="http://tempuri.org/action/foo1"/>
 
<input name="foo1">
  
<soap:body use="encoded" namespace="http://tempuri.org/message/" 
    encodingStyle
="http://schemas.xmlsoap.org/soap/encoding/" />
 
</input>
</operation>
<operation name="foo">
<soap:operation soapAction="http://tempuri.org/action/foo2"/>
<input name="foo2">
<soap:body use="encoded" 
   namespace
="http://tempuri.org/message/" 
   encodingStyle
="http://schemas.xmlsoap.org/soap/encoding/" 
/>
</input>
</operation>
</binding>

<service name="FOOService">
<port name="fooSamplePort" binding="fooSampleBinding">
<soap:address 
  
location="http://carlos:8080/fooService/foo.asp"/>
</port>
</service>
</definitions> 

  到目前为止,还没有一种SOAP的实现支持重载。这对基于JAVA的客户端十分重要,因为JAVA服务器使用的接口用到JAVA的重载特性。而对基于COM的客户端,就不那么重要,因为COM是不支持重载的。

<binding>和<operation>元素
  Binding栏是完整描述协议、序列化和编码的地方,Types, Messages和PortType栏处理抽象的数据内容,而Binding栏是处理数据传输的物理实现。Binding栏把前三部分的抽象定义具体化。

  把相关的数据制定和消息声明分开,这意味着同一类型服务的提供者可以把一系列的操作标准化。每个提供者可以提供定制的binding来互相区分。WSDL也有一个重要的结构,使抽象定义可以放在分离的文件中,而不是和Bindings和Services在一起,这样可在不同的服务提供者之间提供标准化的抽象定义,这很有帮助。例如,银行可以用WSDL文档来标准化一些银行的操作。每个银行仍然可以自由的订制下层的协议、串行优化,及编码。

  下面是重载的WSDL示例 的Binding栏,重复在此以便讨论:

<binding name="fooSampleBinding" type="wsdlns:fooSamplePortType">
<stk:binding preferredEncoding="UTF-8" />
<soap:binding style="rpc" 
 transport
="http://schemas.xmlsoap.org/soap/http"/>
<operation name="foo">
 
<soap:operation soapAction="http://tempuri.org/action/foo1"/>
  
<input name="foo1">
   
<soap:body use="encoded" namespace="http://tempuri.org/message/" 
         encodingStyle
=
         "http://schemas.xmlsoap.org/soap/encoding/"
 />
  
</input>
 
</operation>
<operation name="foo">
<soap:operation soapAction="http://tempuri.org/action/foo2"/>
 
<input name="foo2">
  
<soap:body use="encoded" 
          namespace
="http://tempuri.org/message/" 
        encodingStyle
=
          "http://schemas.xmlsoap.org/soap/encoding/"
 />
 
</input>
</operation>
</binding> 

  <binding>元素已经取了一个名字(本例中"fooSampleBinding"),这样就可以被Services栏的<port>元素引用了。它有一个"type"的属性引用<portType>,本例中就是"wsdlns:fooSamplePortType"。第二行是MSTK2的扩展元素<stk:binding>,它指定了preferredEncoding属性为"UTF-8"。

  <soap:binding>元素指定了所使用的风格("rpc")和传输方式。Transport属性应用了一个namespace,正是这个namespace指明使用HTTP SOAP协议。

  有两个同以"foo"命名的<operation>元素。唯一不同的是它们各自的<input>名字,分别为"foo1"和"foo2"。两个<operation>元素中的<soap:operation>元素有同样的"soapAction"属性,是URI。soapAction属性是SOAP特定的URI,它只是简单的使用于SOAP消息。所产生的SOAP消息有一个SOAPAction头,而URI也仅在<soap:operation>元素里才起作用。soapAction属性在HTTP的binding中是必需的,但在其他非HTTP binding中却不要提供。目前它的使用并不清楚,但它似乎有助于本例中的两个"foo"操作。SOAP 1.1指明soapAction用来确定消息的"意图"。似乎服务器可以在不解析整个消息的情况下就能使用这一属性来发送消息。实际上,它的使用多种多样。<soap:operation>元素也可以包含另一属性,即"style"属性,在有必要冲突<soap:binding>元素指定的风格时可以使用。

  <operation>属性可以包含<input>, <output> 和<fault>的元素,它们都对应于PortType栏中的相同元素。只有<input>元素在上例中提供。这三个元素中的每一个可有一个可选的"name"属性,在本例中,我们用这种方法来区分同名操作。在本例的<input>元素中有一个<soap:body>元素,它指定了哪些信息被写进SOAP消息的信息体中。该元素有以下属性:

  Use
   用于制定数据是"encoded"还是"literal"。"Literal"指结果SOAP消息包含以抽象定义(Types, Messages, 和PortTypes)指定格式存在的数据。"Encoded"指"encodingStyle"属性决定了编码方式。

  Namespace
   每个SOAP消息体可以有其自己的namespace来防止命名冲突。这一属性制定的URI在结果SOAP消息中逐字使用。

  EncodingStyle
   对SOAP编码,它应该有以下URI值:

"http://schemas.xmlsoap.org/soap/encoding" 

文档风格实现

  在前几栏中,<soap:binding>元素有一个类型属性,设为"rpc"。此属性设为"document"时会改变传输时消息的串行化。不同于函数签名,现在的消息是文档传输的。在这类binding中,<message>元素定义文档格式,而不是函数签名。作为例子,考虑以下WSDL片段:

<definitions
xmlns:stns="(SchemaTNS)"
xmlns:wtns
="(WsdlTNS)"
targetNamespace
="(WsdlTNS)">

<schema targetNamespace="(SchemaTNS)"
elementFormDefault
="qualified">
<element name="SimpleElement" type="xsd:int"/>
<element name="CompositElement" type="stns:CompositeType"/>
<complexType name="CompositeType">
<all>
 
<element name='a' type="xsd:int"/>
 
<element name='b' type="xsd:string"/>
</all>
</complexType>
</schema>

<message>
 
<part name='p1' type="stns:CompositeType"/>
 
<part name='p2' type="xsd:int"/>
 
<part name='p3' element="stns:SimpleElement"/>
 
<part name='p4' element="stns:CompositeElement"/>
</message>

</definitions> 

  schema有两个元素:SimpleElement和CompositeElement,还有一个类型声明(CompositeType)。唯一声明的<message>元素有四个部分:p1:Composite型;p2:int型;p3:SimpleElement型;p4:CompositeElement型。以下有一个表,对四种类型的use/type决定的binding作一比较:rpc/literal, document/literal, rpc/encoded, 以及document/encoded。表指明了每种binding的表现。

  <service>和<port>元素

  service是一套<port>元素。在一一对应形式下,每个<port>元素都和一个location关联。如果同一个<binding>有多个<port>元素与之关联,可以使用额外的URL地址作为替换。
一个WSDL文档中可以有多个<service>元素,而且多个<service>元素十分有用,其中之一就是可以根据目标URL来组织端口。这样,我就可以方便的使用另一个<service>来重定向我的股市查询申请。我的客户端程序仍然工作,因为这种根据协议归类的服务不随服务而变化。多个<service>元素的另一个作用是根据特定的协议划分端口。例如,我可以把所有的HTTP端口放在同一个<service>中,所有的SMTP端口放在另一个<service>里。我的客户可以搜索与它可以处理的协议相匹配的<service>。

<service name="FOOService">
<port name="fooSamplePort" binding="fooSampleBinding">
 
<soap:address 
   
location="http://carlos:8080/fooService/foo.asp"/>
</port>
</service> 

  在一个WSDL文档中,<service>的name属性用来区分不同的service。因为同一个service中可以有多个端口,它们也有"name"属性。

  总结

  本文中我描述了WSDL文档关于SOAP方面的最显著的特点。不过应该说明的是WSDL并不仅限于HTTP上的SOAP。WSDL用来描述HTTP-POST、HTTP-GET、SMTP及其他协议时非常清晰。使用了WSDL,SOAP更加容易处理了,无论是开发者还是使用者。我相信WSDL和SOAP一起将会开创网络应用程序世界的新时代。

WSDL的namespace里有一系列的XML元素。下表概述了那些元素、它们的属性和内容。

元素属性内容(子元素)
<definitions>name
targetNamespace
xmlns (other namespaces)
<types>
<message>
<portType>
<binding>
<service>
<types>(none)<xsd:schema>
<message>Name<part>
<portType>Name <operation>
<binding>name
type
<operation>
<service>name <port>
<part> name
type
(empty)
<operation>name
parameterOrder
<input>
<output>
<fault>
<input> name
message
(empty)
<output>name
message
(empty)
<fault> name
message
(empty)
<port>name
binding
<soap:address>
    

  资源:
  
  1. WSDL 1.1
  2. SOAP 1.1
  3. XML Schema Primer
  4. MS SOAP Toolkit Download Site
  5. A tool for translating IDL to WSDL
  6. Free Web Services resources including a WSDL to VB proxy generator
  7. PocketSOAP: SOAP related components, tools & source code

 


posted on 2007-01-22 12:59 Java初心 阅读(2740) 评论(0)  编辑  收藏 所属分类: Web Service

只有注册用户登录后才能发表评论。


网站导航:
 

<2007年1月>
31123456
78910111213
14151617181920
21222324252627
28293031123
45678910

常用链接

留言簿(1)

随笔分类

随笔档案

文章分类

文章档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜