站内搜索: 请输入搜索关键词

当前页面: 开发资料首页J2EE 专题J2EE构造web service

J2EE构造web service

摘要: J2EE构造web service

在这篇文章,我向java程序开发者介绍service-oriented architecture (SOA),我将解释怎么使用J2EE 1.4去建立一个web 服务使其能操作和方便的通过J2EE1.4来适应应用服务(例如: Oracle Application Server)。

Web Services Architecture
让我们在学习web services部署J2EE platform之前,我们先了解web service 的主要结构。
通过网络我们可以找到一些关于 web services的定义、发布、和调用。一个web service,如图一

图一

现在有两种web services:“RPC style and document style”,RPC-style web services是在最初受欢迎的。但在近几年是document-style是首选的web services。

RPC-style web services是远程程序调用,代表相互交互。RPC-style web services在交互信息中调用和返回必须先符合明确的签名,在应用中非常不方便。相反,document-style web services 通过用xml,来改变发送和接收应用。

许多的开发者觉得web services是一个有活力的技术,他继承SOA。因为它提供一个相互作用在不同的平台和轻便的技术。例如xml,soap,and http。
What Are Web Services Made of?

在web service首先要先定义A Web Services Definition Language (WSDL; pronounced "wizdle") 文档。

这个WSDL提供一个完全的描述web service,包括端口、操作、信息类型等。

Here is a simple example of a WSDL document that describes a HelloWorld web service:


name="HelloService"
targetNamespace="http://oracle.j2ee.ws/ejb/Hello"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="http://oracle.j2ee.ws/ejb/Hello"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:ns1="http://oracle.j2ee.ws/ejb/Hello/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">

targetNamespace="http://oracle.j2ee.ws/ejb/Hello/types"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns="http://oracle.j2ee.ws/ejb/Hello/types"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">


element="ns1:sayHelloElement"/>


element="ns1:sayHelloResponseElement"/>



<input message="tns:HelloServiceInf_sayHello"/>













type="tns:sayHelloResponse"/>



transport="http://schemas.xmlsoap.org/soap/http"/>

soapAction="http://oracle.j2ee.ws/ejb/Hello:sayHello"/>
<input>

</input>










在这个WSDL,你需要注意HelloService ,包括他的包括端口、操作、信息类型等。这个WSDL 使web service 和客户端,能够自动的产生客户端代理。

在这个web services有两个主要的技术,一个是SOAP,它是调用web service,一个是UDDI它提供web service的本地注册。

未完待续



↑返回目录
前一篇: J2EE初学者需要理解的问题
后一篇: J2EE架构的6个最佳实践