Wednesday, April 29, 2009

WebService 的一些基本概念

更多精彩请到 http://www.139ya.com

转自: http://blog.csdn.net/dragondwy/archive/2009/01/06/3722397.aspx

Endpoint, Namespace,RPC/Document Type


http://www.ttdev.com/SimpleService 这个webservice全名就是所谓的"endpoint"



RPC 型的Web Service 方法定义





Document 类型Webservice




注释:

http://ttdev.com/ss 就是namespace, 并无特别意义,只需要global 唯一.
namespace 不用于endpoint, endpoint 是一个存在的location;而namespace就是一个表示unique ID.
可以任意移动webservice的位置,改变Server,也就是说变更endpoint;但是方法(operation)的namespace不可以改变。



不同点在哪? 最大不同就是RPC不能通过Schema 来校验,而document 类型是可以的。因此document 类型webservice成为主流 。
"WS-I (web services interoperability organization)" 组织规定只使用document类型 web services。


Port type

事实上,一个Web service 并不直接包含一组operation(方法)。方法是被组成一个或多个"Port Types"。
一个Port type 类似java 类,每个operation 类似java class中的静态方法。
比如,一个web service中,把所有string相关操作组成 stringUtil Port type, 把日期相关的操作组成dateUtil Port Type.
所有 port type的命名必须是QName. (QName 就是需要有 namespace和localname的全名称, 见上篇的图示)




Binding

一个 port type 允许使用不同的信息格式访问,比如SOAP(Simple Object Access Protocal)或
普通文本格式(plain text fomat):

concat(s1='abc', s2='123')

除了信息格式,每个port type还允许使用信息通过HTTP Post 请求或者 通过 email方式传送。

因此,每个被支持的信息格式和信息传送方式组合,就叫做 binding.
最常见的binding就是 SOAP+HTTP.






Port

假如很多人使用你的web service,你决定把你的web service部署到3台机器上(C1,C2,C3)。
部署策略为:采用binding1于C1,C2,C3 机器上;采用binding2于C3机器上.
此时,我们就说,你一共有四个port, 其中3个port使用用binding1, 1个port使用binding2.

看图理解的快




需要注意的是, 每个port的方法实现可以使用不同的软件,语言,比如port1用 java 写,port2用C#写,都无所谓,但都必须实现port type 中的operation,已经binding1定义的
message format 和传输方式。

因此,为了表达这个部署的结构信息,在Web service 接口定义中port的信息



Target Namespace

上面2篇中的例子看到,在web service中,无论是operation 名,还是port type的名字,都用了同一个namespace.
默认情况下,一个web service使用单一namespace来命名各种对象。这个namespace,称为web service 的Target Namespace





Namespace 的命名必须是URI (Uniform Resource Identifer), 而URI有分2种类型.
Web servie 中的target namespace, 使用两种URI都可以。

URL http://blog.csdn.net/dragondwy
URN

urn::
sample: urn:isbn:1-23-456789-0


WSDL

上面图中的内容已经充分的描述出一个web service 设计。那么这中描述Web service的语言,就叫做WSDL(Web Services Description Language)


总结

Web service 是平台无关的,语言无关的,可以通过internet访问。
一个 Web service 具有一个或多个ports.每个port 是指部署在某个网络地址上的一个binding.
这个网络地址叫做endpoint. 一个binding是指某个port type使用的特有信息格式和特有的传输协议的结合。
一个port type可以包含一个或多个operations. 每个operation 可以有输入信息(方法调用和输入参数)和输出信息(返回值)。
每个信息包含一个或多个parts. 每个part都是一个在web service的schema中定义好的element。
所有内容通过WSDL描述。

如果要调用以讹RPC 类型的web service, 需要创建XML element, 其中包含operation 名字,所有输入信息(part)的element.等内容。
而调用document 类型的web service,只需要发送一个 输入信息part 的内容即可。
因为RPC类型 web service中的XML element没定义在任何schema中,因此没有校验机制。
所以document 类型的web service是主流,为了更好地协作性考虑,应该使用这种类型。

web service,每个ports,bindings, port types, operations 都有一个QName作为唯一标识符。
一个QName包含 local part和 XML namespace两部分。
一个XML namespace是一个全局唯一URI.
默认情况下,web service中所有这些对象的命名都是用单一的Target namespace.

URI有两种类型:URL 和 URN.
URN 具有这样的格式 urn::.
XML namespace可以任意使用URL和URN格式,他们的区别是,URL 往往表示某个对象的位置,而URN就是一个纯粹的对象标志符号。
You can use either as an XML namespace. The only
difference is that a URL is suggesting that it is the location of an object, while a
URN is purely an id of the object.

No comments: