首页 > 开发 > 综合 > 正文

WebServices入门

2024-07-21 02:21:24
字体:
来源:转载
供稿:网友

[pre]webservices入门
——理论篇
瑞联科技(中国)有限公司 李春林[/pre]
本文档是用ctrl+c -> ctrl+v产生出来的入门级文档,主要是想说明什么是webservices,webservices的架构,以及几个相关的xml文档。由于小弟知识及技术非常有限,文中不妥之处请各位兄台指正,小弟在此谢过啦。
什么是webservices?
从表面上看:webservices 就是一个应用程序,它向外界暴露出一个能够通过web进行调用的api。这就是说,你能够用编程的方法通过web来调用这个应用程序。我们把调用这个webservices 的应用程序叫做客户。
更专业的描述如下:webservices是描述一些操作(利用标准化的 xml 消息传递机制可以通过网络访问这些操作)的接口。webservices是用标准的、规范的 xml 概念描述的,称为 webservices的服务描述。这一描述囊括了与服务交互需要的全部细节,包括消息格式(详细描述操作)、传输协议和位置。该接口隐藏了实现服务的细节,允许独立于实现服务基于的硬件或软件平台和编写服务所用的编程语言使用服务。这允许并支持基于 webservices的应用程序成为松散耦合、面向组件和跨技术实现。webservices履行一项特定的任务或一组任务。webservices可以单独或同其它 webservices一起用于实现复杂的聚集或商业交易,以及企业集成(eai)。
webservices模型
webservices体系结构基于三种角色(服务提供者、服务注册中心和服务请求者)之间的交互。交互涉及发布、查找和绑定操作。这些角色和操作一起作用于 webservices构件:

webservices软件模块及其描述。在典型(并非 非典^_^)情况下,服务提供者托管可通过网络访问的软件模块(webservices的一个实现)。服务提供者定义 web 服务的服务描述并把它发布到服务请求者或服务注册中心。服务请求者使用查找操作来从本地或服务注册中心检索服务描述,然后使用服务描述与服务提供者进行绑定并调用 web 服务实现或同它交互。服务提供者和服务请求者角色是逻辑结构,因而服务可以表现两种特性。下图 图示了这些操作、提供这些操作的组件及它们之间的交互。

webservices协议栈
要以一种可互操作的方式执行发布、发现和绑定这三个操作,必须有一个包含每一层标准的 webservices协议栈。下图展示了一个概念性 webservices协议栈。上面的几层建立在下面几层提供的功能之上。垂直的条表示在协议栈中每一层必须满足的需求。左面的文本表示协议栈的那一层所应用的标准技术。

下面对上面是概念性的协议栈中,的每一层做一个粗糙的说明:
第一层(network):这一层的这些协议都是现在运用比较广泛的协议啦,现在http运用的最多啦,好处是显而易见的,其他的我就不多说了吧。(主要我怕我说出来会错误百出,被大家嘲笑。 *_*)。
第二层(xml-based messaging)这一层中主要体现怎么去调用webservices。现在运用比较广泛的主要有两种,一种是xml-rpc(xml-remote procedure call), 另一种是soap(simple object access protocal)。相比之下soap比xml-rpc有一定的优势:soap在处理复杂数据(如数组等)要比xml-rpc更容易一些;xml-rpc没有标准化错误代码;下面我们着重看看soap:
什么是soap?
对soap的一种简单理解:
soap是一种xml application,soap简单的理解,就是这样的一个开放协议soap=rpc+http+xml:采用http作为底层通讯协议;rpc作为一致性的调用途径,xml作为数据传送的格式,允许服务提供者和服务客户经过防火墙在internet进行通讯交互。如下图:

对soap更深一步的理解:
soap简单对象访问协议是在分散或分布式的环境中交换信息的简单的协议,是一个基于xml的协议,它包括四个部分:soap封装(envelop),封装定义了一个描述消息中的内容是什么,是谁发送的,谁应当接受并处理它以及如何处理它们的框架,如下图;soap编码规则(encoding rules),用于表示应用程序需要使用的数据类型的实例,一般遵循xmlschema(定义了一系列的简单数据类型)规范; soap rpc表示(rpc representation),表示远程过程调用和应答的协定;soap绑定(binding),使用底层协议交换信息。虽然这四个部分都作为soap的一部分,作为一个整体定义的,但他们在功能上是相交的、彼此独立的。特别的,信封和编码规则是被定义在不同的xml命名空间(namespace)中,这样使得定义更加简单。

图:soap封装(envelop)
下面让我们来看一个soap的例子:
[pre]post /calendar-request http/1.1
host: www.todaytech.com.cn
content-type: text/plain; charset="utf-8"
content-length: 507
soapaction:””

<soapenv:envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/xmlschema" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance">
<soapenv:body>
<ns1:searchpaynoteresponse
soapenv:encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="http://external.charge.gfmis.todaytech.com">
<searchpaynotereturn href="#id0"/>
</ns1:searchpaynoteresponse>
<multiref id="id0" soapenc:root="0" soapenv:encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
xsi:type="ns2:externalpaynotevo"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns2="http://vo.charge.gfmis.todaytech.com">
<paynoteno xsi:type="xsd:string">0300000003004</paynoteno>
<startdate xsi:type="xsd:string" xsi:nil="true"/>
<disaid xsi:type="xsd:string" xsi:nil="true"/>
<annotation xsi:type="xsd:string" xsi:nil="true"/>
<chargeitemno3 xsi:type="xsd:string" xsi:nil="true"/>
<amount xsi:type="xsd:double">0.0</amount>
<chargeitemno2 xsi:type="xsd:string" xsi:nil="true"/>
<loginkey xsi:type="xsd:string">ycptewkew</loginkey>
<chargeitemno1 xsi:type="xsd:string" xsi:nil="true"/>
<usersign xsi:type="xsd:string" xsi:nil="true"/>
<operator xsi:type="xsd:string" xsi:nil="true"/>
<usercert xsi:type="xsd:string" xsi:nil="true"/>
<quantity3 xsi:type="xsd:double">0.0</quantity3>
<quantity2 xsi:type="xsd:double">0.0</quantity2>
<unitname xsi:type="xsd:string" xsi:nil="true"/>
<srvsign xsi:type="xsd:string" xsi:nil="true"/>
<quantity1 xsi:type="xsd:double">0.0</quantity1>
<srvcert xsi:type="xsd:string" xsi:nil="true"/>
<externalpaynoteno xsi:type="xsd:string" xsi:nil="true"/>
<status xsi:type="xsd:int">1</status>
<randstr xsi:type="xsd:string" xsi:nil="true"/>
<returncode xsi:type="xsd:int">0</returncode>
<enddate xsi:type="xsd:string" xsi:nil="true"/>
<price3 xsi:type="xsd:double">0.0</price3>
<price2 xsi:type="xsd:double">0.0</price2>
<price1 xsi:type="xsd:double">0.0</price1>
<unitno xsi:type="xsd:string" xsi:nil="true"/>
<payername xsi:type="xsd:string" xsi:nil="true"/>
</multiref>
</soapenv:body>
</soapenv:envelope>[/pre]
第三层(service description):在这一层中主要是我们服务的描述,向客户端说明我们的服务,告诉客户端、我们的提供了什么样的接口可供调用(what),怎么样去调用(how),到那去调用(where)。在这一层中主要的协议是wsdl(web services description language)。wsdl 是一种xml application,它的作用就是给客户端描述我们接口的what,how,where,也就是说:wsdl 服务定义为分布式系统提供了可机器识别的sdk文档,并且可用于描述自动执行应用程序通信中所涉及的细节。
wsdl 文档将web服务定义为服务访问点或端口的集合。在 wsdl 中,由于服务访问点和消息的抽象定义已从具体的服务部署或数据格式绑定中分离出来,因此可以对抽象定义进行再次使用:消息,指对交换数据的抽象描述;而端口类型,指操作的抽象集合。用于特定端口类型的具体协议和数据格式规范构成了可以再次使用的绑定。将web访问地址与可再次使用的绑定相关联,可以定义一个端口,而端口的集合则定义为服务。因此,wsdl 文档在web服务的定义中使用下列元素:
&#8226; types - 数据类型定义的容器,它使用某种类型系统(一般地使用xml schema中的类型系统)。
&#8226; message - 通信消息的数据结构的抽象类型化定义。使用types所定义的类型来定义整个消息的数据结构。
&#8226; operation - 对服务中所支持的操作的抽象描述,一般单个operation描述了一个访问入口的请求/响应消息对。
&#8226; porttype - 对于某个访问入口点类型所支持的操作的抽象集合,这些操作可以由一个或多个服务访问点来支持。
&#8226; binding - 特定端口类型的具体协议和数据格式规范的绑定。
&#8226; port - 定义为协议/数据格式绑定与具体web访问地址组合的单个服务访问点。
&#8226; service - 相关服务访问点的集合。
我们可以参考下图,来理解一下wsdl文档的结构组织:

说明:其中,
types是一个数据类型定义的容器,包含了所有在消息定义中需要的xml元素的类型定义,它一般遵循xmlschema的规范。
message具体定义了在通信中使用的消息的数据结构,message元素包含了一组part元素,每个part元素都是最终消息的一个组成部分,每个part都会引用一个datatype来表示它的结构。part元素不支持嵌套(可以使用datatype来完成这方面的需要),都是并列出现。
porttype具体定义了一种服务访问入口的类型,何谓访问入口的类型呢?就是传入/传出消息的模式及其格式。一个porttype可以包含若干个operation,而一个operation则是指访问入口支持的一种类型的调用。在wsdl里面支持四种访问入口调用的模式:
1. 单请求;
2. 单响应;
3. 请求/响应;
4. 响应/请求。
service描述的是一个具体的被部署的web服务所提供的所有访问入口的部署细节,一个service往往会包含多个服务访问入口,而每个访问入口都会使用一个port元素来描述。
port描述的是一个服务访问入口的部署细节,包括通过哪个web地址(url)来访问,应当使用怎样的消息调用模式来访问等。其中消息调用模式则是使用binding结构来表示。
binding结构定义了某个porttype与某一种具体的网络传输协议或消息传输协议相绑定,从这一层次开始,描述的内容就与具体服务的部署相关了。比如可以将porttype与soap/http绑定,也可以将porttype与mime/smtp相绑定等。

下面我们给出一个wsdl的文档实例:
[pre]<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions targetnamespace="http://external.charge.gfmis.todaytech.com"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://external.charge.gfmis.todaytech.com-impl"
xmlns:intf="http://external.charge.gfmis.todaytech.com"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns2="http://vo.charge.gfmis.todaytech.com"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/xmlschema">
<wsdl:types>
<schema targetnamespace="http://vo.charge.gfmis.todaytech.com"
xmlns="http://www.w3.org/2001/xmlschema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<complextype name="externalpaynotevo">
<sequence>
<element name="amount" type="xsd:double"/>
<element name="annotation" nillable="true" type="xsd:string"/>
<element name="chargeitemno1" nillable="true" type="xsd:string"/>
<element name="chargeitemno2" nillable="true" type="xsd:string"/>
<element name="chargeitemno3" nillable="true" type="xsd:string"/>
<element name="disaid" nillable="true" type="xsd:string"/>
<element name="enddate" nillable="true" type="xsd:string"/>
<element name="externalpaynoteno" nillable="true" type="xsd:string"/>
<element name="loginkey" nillable="true" type="xsd:string"/>
<element name="operator" nillable="true" type="xsd:string"/>
<element name="payername" nillable="true" type="xsd:string"/>
<element name="paynoteno" nillable="true" type="xsd:string"/>
<element name="price1" type="xsd:double"/>
<element name="price2" type="xsd:double"/>
<element name="price3" type="xsd:double"/>
<element name="quantity1" type="xsd:double"/>
<element name="quantity2" type="xsd:double"/>
<element name="quantity3" type="xsd:double"/>
<element name="randstr" nillable="true" type="xsd:string"/>
<element name="returncode" type="xsd:int"/>
<element name="srvcert" nillable="true" type="xsd:string"/>
<element name="srvsign" nillable="true" type="xsd:string"/>
<element name="startdate" nillable="true" type="xsd:string"/>
<element name="status" type="xsd:int"/>
<element name="unitno" nillable="true" type="xsd:string"/>
<element name="unitname" nillable="true" type="xsd:string"/>
<element name="usercert" nillable="true" type="xsd:string"/>
<element name="usersign" nillable="true" type="xsd:string"/>
</sequence>
</complextype>
<element name="externalpaynotevo" nillable="true" type="tns2:externalpaynotevo"/>
</schema>
</wsdl:types>

<wsdl:message name="logoutrequest">
<wsdl:part name="epnvo" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="searchpaynoteresponse">
<wsdl:part name="searchpaynotereturn" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="searchpaynoterequest">
<wsdl:part name="epnvo" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="genpaynoteresponse">
<wsdl:part name="genpaynotereturn" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="loginresponse">
<wsdl:part name="loginreturn" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="logoutresponse">
<wsdl:part name="logoutreturn" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="genpaynoterequest">
<wsdl:part name="epvo" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:message name="loginrequest">
<wsdl:part name="epnvo" type="tns2:externalpaynotevo"/>
</wsdl:message>
<wsdl:porttype name="externalinterface">
<wsdl:operation name="login" parameterorder="epnvo">
<wsdl:input message="intf:loginrequest" name="loginrequest"/>
<wsdl:output message="intf:loginresponse" name="loginresponse"/>
</wsdl:operation>
<wsdl:operation name="logout" parameterorder="epnvo">
<wsdl:input message="intf:logoutrequest" name="logoutrequest"/>
<wsdl:output message="intf:logoutresponse" name="logoutresponse"/>
</wsdl:operation>
<wsdl:operation name="genpaynote" parameterorder="epvo">
<wsdl:input message="intf:genpaynoterequest"
name="genpaynoterequest"/>
<wsdl:output message="intf:genpaynoteresponse"
name="genpaynoteresponse"/>
</wsdl:operation>
<wsdl:operation name="searchpaynote" parameterorder="epnvo">
<wsdl:input message="intf:searchpaynoterequest"
name="searchpaynoterequest"/>
<wsdl:output message="intf:searchpaynoteresponse"
name="searchpaynoteresponse"/>
</wsdl:operation>
</wsdl:porttype>
<wsdl:binding name="externalinterfacesoapbinding"
type="intf:externalinterface">
<wsdlsoap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="login">
<wsdlsoap:operation soapaction=""/>
<wsdl:input name="loginrequest">
<wsdlsoap:body
encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="loginresponse">
<wsdlsoap:body
encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="logout">
<wsdlsoap:operation soapaction=""/>
<wsdl:input name="logoutrequest">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="logoutresponse">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="genpaynote">
<wsdlsoap:operation soapaction=""/>
<wsdl:input name="genpaynoterequest">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="genpaynoteresponse">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="searchpaynote">
<wsdlsoap:operation soapaction=""/>
<wsdl:input name="searchpaynoterequest">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="searchpaynoteresponse">
<wsdlsoap:body encodingstyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://external.charge.gfmis.todaytech.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="externalinterfaceservice">
<wsdl:port binding="intf:externalinterfacesoapbinding" name="externalinterface">

<wsdlsoap:address location="http://localhost:7001/gfmis/services/externalinterface"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>[/pre]
第四层(service publication):
第五层(service discovery):这两层都是关于uddi的协议,我们暂时用不上,现在也暂时没有,以后补上(^_^)。



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表