Web Service的研究
程序员文章站
2022-04-28 09:54:05
...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
SOA和Web Service
首先明白SOA和Web Service的关系:
* SOA面向服务架构,用于大型分布式系统的一个概念;
* Web Service是实现SOA的方式之一,不是所有的SOA都是基于Web service的;
* 但Webservice确实为最主流的SOA实现方式,有的人甚至把SOA等同于Webservice。不可否认,正是Webservice的成功才造就了SOA这个概念的成功;
Webservice
1.WSDL: Web服务定义语言(Web Service Definition Language),用来定义服务接口。实际上,它能描述服务的两个不同方面:服务的签名(名字和参数),以及服务的绑定和部署细节(协议和位置)。
2.SOAP:简单对象访问协议(Simple Object Access Protocol),是定义Webservice的协议。HTTP是一个网络数据交互的底层协议,而SOAP是Web Service数据交换的专用协议。
3.UDDI:通用描述、发现与集成服务(Universal Description, Discovery and Integration),UDDI 是一种目录服务,企业可以使用它对 Web services 进行注册和搜索。
SOAP是协议,就像HTTP协议一样,一般框架都已经集成;
UDDI扮演者补充的角色,非必须,而且通常在实践中也不用。
WSDL是开发人员打交道最多的东西,也算是Webservice的核心了。
WSDL
WSDL现在主要有两个版本,1.1和2.0,两个版本标示大体结构相似,略有不同。(WSDL1.1版本根节点为definitions,2.0版本根节点为description)
WSDL Example
WSDL通常是框架来生成的,并不是手工写的,比如Java可以使用wsgen 生成webservice,.Net框架也有自己方法,都可以通过自身的框架把接口发布称WSDL文件。
一个WSDL的简单示例。这个WSDL文件定义了一个被称为CustomerService的服务,该服务提供了一个被称为getCustomerAdress()的操作。这个操作的输入参数为一个类型为long的客户ID,输出为一个包含3个string属性-街道、城市和邮编的结构。(示例来自于《SOA实践指南》)
一个WSDL的简单示例。这个WSDL文件定义了一个被称为CustomerService的服务,该服务提供了一个被称为getCustomerAdress()的操作。这个操作的输入参数为一个类型为long的客户ID,输出为一个包含3个string属性-街道、城市和邮编的结构。(示例来自于《SOA实践指南》)
<?xml version="1.0" encoding="utf-8" ?><definitions name="CustomerService" targetNamespace="http://soa-in-practice.com/wsdl" xmlns:tns="http://soa-in-practice.com/wsdl" xmlns:xsd1="http://soa-in-practice.com/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/"> <types> <xsd:schema targetNamespace="http://soa-in-practice.com/xsd" xmlns="http://soa-in-practice.com/xsd"> <xsd:element name="getCustomerAddress"> <xsd:complexType> <xsd:sequence> <xsd:element name="customerID" type="xsd:long"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="getCustomerAddressResponse" type="Address"/> <xsd:complexType name="Address"> <xsd:sequence> <xsd:element name="street" type="xsd:string"/> <xsd:element name="city" type="xsd:string"/> <xsd:element name="zipCode" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:schema> </types> <message name="getCustomerAddressInput"> <part name="params" element="xsd1:getCustomerAddress"/> </message> <message name="getCustomerAddressOutput"> <part name="params" element="xsd1:getCustomerAddressResponse"/> </message> <portType name="CustomerInterface" > <operation name="getCustomerAddress"> <input message="tns:getCustomerAddressInput" /> <output message="tns:getCustomerAddressOutput" /> </operation> </portType> <binding name="CustomerSOAPBinding" type="tns:CustomerInterface" > <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" /> <operation name="getCustomerAddress"> <soap:operation soapAction="http://soa-in-practice.com/getCustomerAddress" /> <input> <soap:body use="literal" /> </input> <output> <soap:body use="literal" /> </output> </operation> </binding> <service name="CustomerService" > <port name="CustomerPort" binding="tns:CustomerSOAPBinding"> <soap:address location="http://soa-in-practice.com/customer11"/> </port> </service></definitions>
WSDL文件的解读
阅读一个WSDL,需要从下往上看:
最后的<service>节点定义了这个服务的名称为CustomerService,并且该服务可以在http://soa-in-practice.com/customer11找到。
<service name="CustomerService" >
<port name="CustomerPort"
binding="tns:CustomerSOAPBinding">
<soap:address
location="http://soa-in-practice.com/customer11"/>
</port>
</service>
<port name="CustomerPort"
binding="tns:CustomerSOAPBinding">
<soap:address
location="http://soa-in-practice.com/customer11"/>
</port>
</service>
<binding>节点定义了用来提供Webservice的协议和格式。CustomerSOABiding是Binding的名称,并指出Binding要从哪个接口开始(这里是从CustomerInterface这个接口开始)
<binding name="CustomerSOAPBinding"
type="tns:CustomerInterface" >
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getCustomerAddress">
<soap:operation
soapAction="http://soa-in-practice.com/getCustomerAddress" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
type="tns:CustomerInterface" >
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getCustomerAddress">
<soap:operation
soapAction="http://soa-in-practice.com/getCustomerAddress" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<portType>描述了CustomerInterface这个接口,其中接口包含一个叫getCustomerAddress的Operation。在Operation下边,getCustomerAddressInput和getCustomerAddressOutput是这个Operation的输入消息和输出消息。
<portType name="CustomerInterface" >
<operation name="getCustomerAddress">
<input message="tns:getCustomerAddressInput" />
<output message="tns:getCustomerAddressOutput" />
</operation>
</portType>
<operation name="getCustomerAddress">
<input message="tns:getCustomerAddressInput" />
<output message="tns:getCustomerAddressOutput" />
</operation>
</portType>
<message>节点定义了各个消息,使用的是<portType>节点引用的标识符。
<message name="getCustomerAddressInput">
<part name="params" element="xsd1:getCustomerAddress"/>
</message>
<message name="getCustomerAddressOutput">
<part name="params" element="xsd1:getCustomerAddressResponse"/>
</message>
<part name="params" element="xsd1:getCustomerAddress"/>
</message>
<message name="getCustomerAddressOutput">
<part name="params" element="xsd1:getCustomerAddressResponse"/>
</message>
<type>节点定义了将会使用到的数据类型:输入参数customerID的类型为long,输出参数address的类型是有3个字符串属性的结构/记录。所有类型在自己的命名空间xsd1中。
<types>
<xsd:schema
targetNamespace="http://soa-in-practice.com/xsd"
xmlns="http://soa-in-practice.com/xsd">
<xsd:element name="getCustomerAddress">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="customerID" type="xsd:long"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="getCustomerAddressResponse" type="Address"/>
<xsd:complexType name="Address">
<xsd:sequence>
<xsd:element name="street" type="xsd:string"/>
<xsd:element name="city" type="xsd:string"/>
<xsd:element name="zipCode" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</types>
<xsd:schema
targetNamespace="http://soa-in-practice.com/xsd"
xmlns="http://soa-in-practice.com/xsd">
<xsd:element name="getCustomerAddress">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="customerID" type="xsd:long"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="getCustomerAddressResponse" type="Address"/>
<xsd:complexType name="Address">
<xsd:sequence>
<xsd:element name="street" type="xsd:string"/>
<xsd:element name="city" type="xsd:string"/>
<xsd:element name="zipCode" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</types>
SOAP
SOAP (Simple Object Access Protocol)是一个消息框架,这个消息框架是基于XML协议的,从下图能够看到,SOAP的框架非常像HTTP协议,都包含的消息的Header和消息的Body,只不过SOAP是Web Service数据交换的专用协议。SOAP是HTTP的上层协议,最终还是通过HTTP来传输数据。
SOAP Reqeust Example
<?xml version='1.0' ?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> ... </soap:Header> <soap:Body> <getCustomerAddress xmlns="http://soa-in-practice.com/xsd"> <customerID>12345678</customerID> </getCustomerAddress > </soap:Body></soap:Envelope>
SOAP Response Example
<?xml version='1.0' ?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> ... </soap:Header> <soap:Body> <getCustomerAddressResponse xmlns="http://soa-in-practice.com/xsd"> <address> <street>Gaussstr. 29</street> <city>Braunschweig</city> <zipCode>D-38106</zipCode> </address> </getCustomerAddressResponse> </soap:Body></soap:Envelope>
SOAP消息的根元素为<Envelope>
从上边可以看出SOAP是基于XML的,除了组织结构,其他非常类似于HTTP的Request和Response。
HTTP Request Example
GET /path/file.html HTTP/1.0 From: aaa@qq.com User-Agent: HTTPTool/1.0 [blank line here]
HTTP Response Example HTTP/1.0 200 OK Date: Fri, 31 Dec 1999 23:59:59 GMT Content-Type: text/html Content-Length: 1354 <html> <body> <h1>Happy New Millennium!</h1> (more file contents) . . . </body> </html>
参考资料:
《SOA实践指南》
转载请注明出处:http://blog.csdn.net/pan_tian/article/details/10008893
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
推荐阅读
-
WEB端自适应尺寸的方法
-
基于 HTML5 Canvas 的 Web SCADA 组态电机控制面板
-
web在html中引用JavaScript代码的实现(小程序在xwml中实现)
-
用Windows Media Service打造的流媒体直播系统
-
win2008 r2 web服务器IIS的安装与基本设置
-
docker.service启动失败:Unit not found的原因及解决办法
-
单台服务器中利用Apache的VirtualHost如何搭建多个Web站点详解
-
Linux上架设支持JSP+PHP的Web服务器
-
Python Web开发中的WSGI协议简介
-
十大 Node.js 的 Web 框架(快速提升工作效率)