首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

施用XFire+Spring构建Web Service(一)——helloWorld篇

2012-10-10 
使用XFire+Spring构建Web Service(一)——helloWorld篇XFire是与Axis 2并列的新一代Web Service框架,通过提

使用XFire+Spring构建Web Service(一)——helloWorld篇

XFire是与Axis 2并列的新一代Web Service框架,通过提供简单的API支持Web Service各项标准协议,帮助你方便快速地开发Web Service应用。

相 对于Axis来说,目前XFire相对受欢迎,加上其提供了和Spring集成的支持,在目前的Web Service开源社区拥有众多的追随者。并且因为XFire为Spring提供的支持,使得我们可以很容易在Spring中使用XFire构建Web Service应用。

XFire与Axis2相比具有如下特征:

l?????????支持一系列Web Service的新标准--JSR181、WSDL2.0 、JAXB2、WS-Security等;

l?????????使用Stax解释XML,性能有了质的提高。XFire采用Woodstox 作Stax实现;

l?????????容易上手,可以方便快速地从pojo发布服务;

l?????????支持Spring、Pico、Plexus、Loom等容器;

l?????????灵活的Binding机制,包括默认的Aegis,xmlbeans,jaxb2,castor;

l?????????高性能的SOAP 栈设计;

l?????????支持Spring、Pico、Plexus、Loom等容器。

XFire与Axis1性能的比较如下:

l?????????XFire比Axis1.3快2-6倍;

l?????????XFire的响应时间是Axis1.3的1/2到1/5。

XFire在WebService框架中开始较晚,它从现有的框架中借鉴了许多优秀的理念,力争将Web Service的应用开发难度降到最低。此外,还提供了各种绑定技术、支持多种传输协议,对WebService体系中许多新的规范提供了支持。

下面让我们来看一个XFire于Spring集成的helloWorld的简单例子。

一.实现的功能和特点

????本例具有如下功能和特点:

1)?基于J2EE平台的Web Service服务;

2)?开发方便,配置简单;

3)?与spring无缝集成。

XFire是完全基于流数据处理进行工作的系统,这意味着XFire不是将整个SOAP文档缓存在内存中,而是以管道的方式接收SOAP流数据。这种工作方式的转变带来了可观的性能回报,同时节省了内存的占用。

  XFire从 管道中接收一个SOAP请求到返回一个SOAP响应,会经历一系列的阶段。在管道调用的任何一个阶段,XFire都可以添加一些额外的Handler,在 对消息进行加工处理后再传入到下一个阶段中。在SOAP请求消息对Web Service发起真正调用之前,分别会经过传输、预转发、转发、策略实施、用户信息处理、预调用、服务调用等阶段。

二.开发环境

????笔者的开发环境描述如下:

1)?jdk: 1.5版本;

2)?Tomcat:5.5.20;

3)?MyEclipse:5.1.1?GA。

三.开发步骤

1.?工程与环境的建立

在MyEclipse 中新建Web工程,名为webservice_helloworld。选择该工程后,点击右键选择MyEclipse->Add Web Service Capabilities,弹出Add Web Service Capabilities对话框,点击“Next”,弹出Project Library Configuration对话框,默认选择Core Libraries,点击“Finish”按钮,完成XFire核心包的添加。为了后续的客户端的测试,还需读者加入commons- httpclient.jar包到WEB-INF/lib下。

部署后可看到此时WEB-INF/lib的jar包列表如下:

activation-1.1.jar、commons -beanutils-1.7.0.jar、commons-codec-1.3.jar、commons-httpclient.jar、 commons-logging-1.0.4.jar、jaxen-1.1-beta-9.jar、jaxws-api-2.0.jar、jdom- 1.0.jar、jsr173_api-1.0.jar、mail-1.4.jar、saaj-api-1.3.jar、saaj-impl- 1.3.jar、spring-1.2.6.jar、stax-api-1.0.1.jar、wsdl4j-1.5.2.jar、wstx-asl- 3.0.1.jar、xbean-2.1.0.jar、xbean-spring-2.5.jar、xfire-aegis-1.2.2.jar、 xfire-annotations-1.2.2.jar、xfire-core-1.2.2.jar、xfire-java5-1.2.2.jar、 xfire-jaxws-1.2.2.jar、xfire-jsr181-api-1.0-M1.jar、xfire-spring- 1.2.2.jar、XmlSchema-1.1.jar

为了后续的开发和测试,在src目录下分别建立test和webservice目录,分别用于存放测试文件和webservice的相关类。

2.Web Service实现的编写

????在本例中,我们只是做一个helloWorld的简单例子。Web Service服务端提供一个根据输入的名字信息回复相应的helloWorld信息的。例如,当名字为“阿蜜果”时,恢复信息为“hello,阿蜜果”。下面让我们一步一步来开始进行编码。

1)web.xml的配置

一 般情况下,我们通过HTTP作为Web Service的传输协议,这样我们只需启动一个Web服务器(如Tomcat,在本例中使用的是Tomcat5.5.20),这样客户端就可以通过 HTTP访问到Web Service服务。为了集成Spring容器,XFire专门提供一个XFireSpringServlet,我们可以在web.xml中配置该 Servlet,将Spring容器中定义的Web Service在某个URI下发布。

为了能正确使用XFire,需在web.xml中进行相应配置,在该文件中配置XFire的servlet和servlet-mapping。同时因为本实例需要将XFire集成到Spring中,因而需要在web.xml文件中加载Spring的相应配置文件。在本实例中,我们首先在WEB-INF下建立两个配置Spring配置文件,一个为applicationContext.xml,该文件用来定义本工程的bean,一个为xfire-servlet.xml,用来配置XFire的相关bean。修改后的web.xml的内容如下所示:

施用XFire+Spring构建Web Service(一)——helloWorld篇<?xml?version="1.0"?encoding="UTF-8"?>
施用XFire+Spring构建Web Service(一)——helloWorld篇<web-app?xmlns="http://java.sun.com/xml/ns/j2ee"?xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"?version="2.4"?xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee???http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
施用XFire+Spring构建Web Service(一)——helloWorld篇????<display-name>XFireService</display-name>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?begin?Spring配置?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇????<context-param>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<param-name>contextConfigLocation</param-name>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<param-value>/WEB-INF/applicationContext.xml,/WEB-INF/xfire-servlet.xml</param-value>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</context-param>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<listener>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<listener-class>?org.springframework.web.context.ContextLoaderListener
施用XFire+Spring构建Web Service(一)——helloWorld篇???????</listener-class>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</listener>
施用XFire+Spring构建Web Service(一)——helloWorld篇?????<listener>?
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<listener-class>?????org.springframework.web.util.IntrospectorCleanupListener
施用XFire+Spring构建Web Service(一)——helloWorld篇???????</listener-class>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</listener>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?end?Spring配置?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?begin?XFire?配置?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇????<servlet>???
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-name>xfire</servlet-name>???
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</servlet>???
施用XFire+Spring构建Web Service(一)——helloWorld篇????<servlet-mapping>?
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-name>xfire</servlet-name>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<url-pattern>*.ws</url-pattern>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</servlet-mapping>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<servlet>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?配合Spring容器中XFire一起工作的Servlet-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-name>xfireServlet</servlet-name>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-class>org.codehaus.xfire.spring.XFireSpringServlet</servlet-class>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</servlet>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<servlet-mapping>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<servlet-name>xfireServlet</servlet-name>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?在这个URI下开放Web?Service服务?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<url-pattern>/service/*</url-pattern>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</servlet-mapping>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?end?XFire?配置?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇</web-app>
施用XFire+Spring构建Web Service(一)——helloWorld篇

??? 2)Web Service的接口类HelloWorld.java和对应实现类HelloWorldImpl.java

为了用Web Service完成HelloWorld功能,我们首先在src/webservice目录下建立接口类HelloWold.java。它仅包含一个sayHelloWorld(String name)的方法,其详细内容如下:

施用XFire+Spring构建Web Service(一)——helloWorld篇package?webservice;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇/**
施用XFire+Spring构建Web Service(一)——helloWorld篇?*HelloWorld的接口类.
施用XFire+Spring构建Web Service(一)——helloWorld篇?*/
施用XFire+Spring构建Web Service(一)——helloWorld篇publicinterface?HelloWorld?{
施用XFire+Spring构建Web Service(一)——helloWorld篇????/**
施用XFire+Spring构建Web Service(一)——helloWorld篇?????*对名字为name的人打招呼.
施用XFire+Spring构建Web Service(一)——helloWorld篇?????*@paramname名字
施用XFire+Spring构建Web Service(一)——helloWorld篇?????*@return返回打招呼的字符串
施用XFire+Spring构建Web Service(一)——helloWorld篇?????*/
施用XFire+Spring构建Web Service(一)——helloWorld篇????String?sayHelloWorld(String?name);
施用XFire+Spring构建Web Service(一)——helloWorld篇}
施用XFire+Spring构建Web Service(一)——helloWorld篇我们还需要建立一个对应的实现类,来实现sayHelloWorld的功能,该实现类即为HelloWorldImpl.java。该类的详细内容如下:
施用XFire+Spring构建Web Service(一)——helloWorld篇package?webservice;
施用XFire+Spring构建Web Service(一)——helloWorld篇/**
施用XFire+Spring构建Web Service(一)——helloWorld篇?*HelloWorld的实现类.
施用XFire+Spring构建Web Service(一)——helloWorld篇?*/
施用XFire+Spring构建Web Service(一)——helloWorld篇publicclass?HelloWorldImpl?implements?HelloWorld?{
施用XFire+Spring构建Web Service(一)——helloWorld篇????public?String?sayHelloWorld(String?name)?{
施用XFire+Spring构建Web Service(一)——helloWorld篇???????String?helloWorld?=?"hello,"?+?name;
施用XFire+Spring构建Web Service(一)——helloWorld篇???????return?helloWorld;
施用XFire+Spring构建Web Service(一)——helloWorld篇????}
施用XFire+Spring构建Web Service(一)——helloWorld篇}
施用XFire+Spring构建Web Service(一)——helloWorld篇

3)Spring配置文件applicationContext.xmlxfire-servlet.xml的配置

首先我们在applicationContext.xml文件中配置对应的bean——HelloWorldBean,该xml文件的内容如下:

施用XFire+Spring构建Web Service(一)——helloWorld篇<?xml?version="1.0"?encoding="UTF-8"?>
施用XFire+Spring构建Web Service(一)——helloWorld篇<!DOCTYPE?beans?PUBLIC?"-//SPRING//DTD?BEAN//EN"
施用XFire+Spring构建Web Service(一)——helloWorld篇????"http://www.springframework.org/dtd/spring-beans.dtd">
施用XFire+Spring构建Web Service(一)——helloWorld篇<beans>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<bean?id="HelloWorldBean"?class="webservice.HelloWorldImpl"/>
施用XFire+Spring构建Web Service(一)——helloWorld篇</beans>

???? 这个配置文件很简单,在此不详述。

XFire为Spring 提供了方便易用的导出器XFireExporter,借助该导出器的支持,我们可以在Spring容器中将一个POJO导出为Web Service。HelloWorld是业务服务类,在此拥有一个sayHelloWorld的方法,我们希望将此方法开放为Web Service。在实际应用中,如果某个类具有众多的方法,而其中的某些方法不需要开放为Web Service的情况下,我们可以定义一个窄接口,该接口中只需定义那些开放为Web Service的业务方法。

将一个业务类所有需要开放为Web Service的方法通过一个窄接口来描述是值得推荐的作法,这让Web Service的接口显得很“干净”。其次,XFire的导出器也需要服务接口的支持,因为它采用基于接口的动态代理技术。

窄接口中的方法在真实的系统中可能需要引用其它的业务类或DAO获取数据库中的真实数据,为了简化实例,我们在此简化了实例。

下面让我们看看在xfire-servlet.xml文件中导出器的设置,该文件内容如下:

施用XFire+Spring构建Web Service(一)——helloWorld篇<?xml?version="1.0"?encoding="UTF-8"?>
施用XFire+Spring构建Web Service(一)——helloWorld篇<!DOCTYPE?beans?PUBLIC?"-//SPRING//DTD?BEAN//EN"
施用XFire+Spring构建Web Service(一)——helloWorld篇????"http://www.springframework.org/dtd/spring-beans.dtd">
施用XFire+Spring构建Web Service(一)——helloWorld篇<beans>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?引入XFire预配置信息?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇????<import?resource="classpath:org/codehaus/xfire/spring/xfire.xml"?/>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!—定义访问的url-->
施用XFire+Spring构建Web Service(一)——helloWorld篇????<bean?class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="urlMap">?????????????
施用XFire+Spring构建Web Service(一)——helloWorld篇???????????<map>?????????????????
施用XFire+Spring构建Web Service(一)——helloWorld篇??????????????<entry?key="/HelloWorldService.ws">??????????????????
施用XFire+Spring构建Web Service(一)——helloWorld篇??????????????????<ref?bean="HelloWorldService"?/>?????????????????
施用XFire+Spring构建Web Service(一)——helloWorld篇??????????????</entry>?????????????
施用XFire+Spring构建Web Service(一)——helloWorld篇???????????</map>?????????
施用XFire+Spring构建Web Service(一)——helloWorld篇???????</property>?????
施用XFire+Spring构建Web Service(一)——helloWorld篇????</bean>?????
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇????<!--?使用XFire导出器?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇????<bean?id="baseWebService"?class="org.codehaus.xfire.spring.remoting.XFireExporter"?lazy-init="false"?abstract="true">
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?引用xfire.xml中定义的工厂?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="serviceFactory"?ref="xfire.serviceFactory"?/>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?引用xfire.xml中的xfire实例?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="xfire"?ref="xfire"?/>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</bean>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<bean?id="HelloWorldService"?parent="baseWebService">
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?业务服务bean?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="serviceBean"?ref="HelloWorldBean"?/>
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<!--?业务服务bean的窄接口类?-->
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="serviceClass"?value="webservice.HelloWorld"?/>
施用XFire+Spring构建Web Service(一)——helloWorld篇????</bean>
施用XFire+Spring构建Web Service(一)——helloWorld篇</beans>
施用XFire+Spring构建Web Service(一)——helloWorld篇

在 上面的配置中,我们可以看到,在该配置文件中引入了xfire.xml这个Spring配置文件。它是在XFire核心JAR包中拥有一个预定义的 Spring配置文件,它定义了XFire在Spring中必须用到的一些Bean和资源,需要引入这个预定义的配置文件。从该配置文件中可以看出,我们 通过XFireExporter将业务类导出为Web Service,对于任何导出器,我们都需要引入XFire环境,即serviceFactory和xfire,这是标准的配置。ServiceFactory是XFire的核心类,它可以将一个POJO生成为一个Web Service。

在本实例中,我们通过定义一个baseWebService,其余的webService配置都将该bean作为父bean,这样可以简化Spring的配置,不需要多次引入serviceFactory和xfire。

??

3. Web Service的测试

????在上一步操作完成之后,我们的这个简单的Web Service已经编写完毕,下面让我们来看看自己的劳动成果吧。

????在浏览器中输入地址:http://localhost:8080/webservice_helloworld/HelloWorldService.ws?wsdl,我们可以看到HelloWorldService对应的WSDL信息,阅读这个WSDL文档,我们可以知道HelloWorld的sayHelloWorld方法已经被成功地发布为Web Service了。只要拿到这个WSDL就可以开发相应的客户端调用程序了。

XFire为访问服务端Web Service提供了各种方便的方式:我们一般根据服务地址和窄接口类创建客户调用程序。

  在不能获得服务窄接口类的情况下,XFire允许我们通过WSDL文件生成客户端调用程序,通过指定服务接口的方式调用服务。

1)通过WSDL文件生成客户端调用程序

首先我们通过http://localhost:8080/webservice_helloworld/HelloWorldService.ws?wsdl我们可以获得WSDL文件HelloWorldService.wsdl,并将其放在src目录下面,接着我们通过程序访问该WSDL文件,并调用需测试的方法。此时测试类WebServiceClientTest.java的内容如下所示:

施用XFire+Spring构建Web Service(一)——helloWorld篇package?test;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇import?org.codehaus.xfire.client.Client;
施用XFire+Spring构建Web Service(一)——helloWorld篇import?org.springframework.core.io.ClassPathResource;
施用XFire+Spring构建Web Service(一)——helloWorld篇import?org.springframework.core.io.Resource;
施用XFire+Spring构建Web Service(一)——helloWorld篇import?webservice.HelloWorld;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇/**
施用XFire+Spring构建Web Service(一)——helloWorld篇?*Copyright2007GuangZhouAmigo.
施用XFire+Spring构建Web Service(一)——helloWorld篇?*Allrightreserved.???
施用XFire+Spring构建Web Service(一)——helloWorld篇?*HelloWorld的webservice的测试类.
施用XFire+Spring构建Web Service(一)——helloWorld篇?*@author<a?href="mailto:xiexingxing1121@126.com">AmigoXie</a>
施用XFire+Spring构建Web Service(一)——helloWorld篇?*@version1.0
施用XFire+Spring构建Web Service(一)——helloWorld篇?*Creationdate:2007-9-16-下午05:36:05
施用XFire+Spring构建Web Service(一)——helloWorld篇?*/
施用XFire+Spring构建Web Service(一)——helloWorld篇publicclass?WebServiceClientTest?{?
施用XFire+Spring构建Web Service(一)——helloWorld篇????HelloWorld?helloWorld?=?null;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇????publicstaticvoid?main(String[]?args)?throws?Exception?{
施用XFire+Spring构建Web Service(一)——helloWorld篇???????WebServiceClientTest?test?=?new?WebServiceClientTest();
施用XFire+Spring构建Web Service(一)——helloWorld篇???????test.testClient();
施用XFire+Spring构建Web Service(一)——helloWorld篇????}?
施用XFire+Spring构建Web Service(一)——helloWorld篇????
施用XFire+Spring构建Web Service(一)——helloWorld篇????publicvoid?testClient()?throws?Exception?{
施用XFire+Spring构建Web Service(一)——helloWorld篇???????String?wsdl?=?"HelloWorldService.wsdl";?//对应的WSDL文件
施用XFire+Spring构建Web Service(一)——helloWorld篇???????Resource?resource?=?new?ClassPathResource(wsdl);?
施用XFire+Spring构建Web Service(一)——helloWorld篇???????Client?client?=?new?Client(resource.getInputStream(),?null);?//根据WSDL创建客户实例
施用XFire+Spring构建Web Service(一)——helloWorld篇???????
施用XFire+Spring构建Web Service(一)——helloWorld篇???????Object[]?objArray?=?new?Object[1];
施用XFire+Spring构建Web Service(一)——helloWorld篇???????objArray[0]?=?"阿蜜果";
施用XFire+Spring构建Web Service(一)——helloWorld篇???????//调用特定的Web?Service方法
施用XFire+Spring构建Web Service(一)——helloWorld篇???????Object[]?results?=?client.invoke("sayHelloWorld",?objArray);
施用XFire+Spring构建Web Service(一)——helloWorld篇???????System.out.println("result:?"?+?results[0]);
施用XFire+Spring构建Web Service(一)——helloWorld篇????}
施用XFire+Spring构建Web Service(一)——helloWorld篇}

运行该类,可得到如下输出结果:

result: hello,阿蜜果

可看出运行结果正确。

2)根据服务地址创建客户端调用程序

????接着让我们来看一个根据服务地址创建客户端调用程序的例子。我们可以通过测试类来测试Web Service的正确性,下面让我们来看一个简单的测试类,首先我们在src/test目录建立WebServiceClientTest.java文件,并在src目录下建立客户端调用的Spring配置文件client.xml。在client.xml配置文件中我们定义了一个testWebService的bean,该bean访问wsdlDocumentUrl为http://localhost:8080/webservice_helloworld/HelloWorldService.ws?wsdl的WSDL。该xml文件的详细内容如下:

施用XFire+Spring构建Web Service(一)——helloWorld篇<?xml?version="1.0"?encoding="UTF-8"?>
施用XFire+Spring构建Web Service(一)——helloWorld篇<!DOCTYPE?beans?PUBLIC?"-//SPRING//DTD?BEAN//EN"
施用XFire+Spring构建Web Service(一)——helloWorld篇????"http://www.springframework.org/dtd/spring-beans.dtd">
施用XFire+Spring构建Web Service(一)——helloWorld篇<beans>
施用XFire+Spring构建Web Service(一)——helloWorld篇????<bean?id="testWebService"?class="org.codehaus.xfire.spring.remoting.XFireClientFactoryBean">
施用XFire+Spring构建Web Service(一)——helloWorld篇???????<property?name="serviceClass">??????????
施用XFire+Spring构建Web Service(一)——helloWorld篇???<value>webservice.HelloWorld</value>???????
施用XFire+Spring构建Web Service(一)——helloWorld篇???????</property>??????
施用XFire+Spring构建Web Service(一)——helloWorld篇????????<property?name="wsdlDocumentUrl">?????????
施用XFire+Spring构建Web Service(一)——helloWorld篇<value>http://localhost:8080/webservice_helloworld/HelloWorldService.ws?wsdl</value>???????
施用XFire+Spring构建Web Service(一)——helloWorld篇????????</property>??????
施用XFire+Spring构建Web Service(一)——helloWorld篇?????</bean>
施用XFire+Spring构建Web Service(一)——helloWorld篇</beans>
施用XFire+Spring构建Web Service(一)——helloWorld篇

???? 在WebServiceClientTest.java文件中获得HelloWorld,并调用它的sayHelloWorld方法来完成测试,该类的详细内容如下所示:

施用XFire+Spring构建Web Service(一)——helloWorld篇package?test;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇import?org.springframework.context.ApplicationContext;
施用XFire+Spring构建Web Service(一)——helloWorld篇import?org.springframework.context.support.ClassPathXmlApplicationContext;
施用XFire+Spring构建Web Service(一)——helloWorld篇import?webservice.HelloWorld;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇/**
施用XFire+Spring构建Web Service(一)——helloWorld篇?*HelloWorld的webservice的测试类.
施用XFire+Spring构建Web Service(一)——helloWorld篇?*/
施用XFire+Spring构建Web Service(一)——helloWorld篇publicclass?WebServiceClientTest?{?
施用XFire+Spring构建Web Service(一)——helloWorld篇????HelloWorld?helloWorld?=?null;
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇????publicstaticvoid?main(String[]?args)?{
施用XFire+Spring构建Web Service(一)——helloWorld篇???????WebServiceClientTest?test?=?new?WebServiceClientTest();
施用XFire+Spring构建Web Service(一)——helloWorld篇???????test.testClient();
施用XFire+Spring构建Web Service(一)——helloWorld篇????}?
施用XFire+Spring构建Web Service(一)——helloWorld篇
施用XFire+Spring构建Web Service(一)——helloWorld篇????publicvoid?testClient()?{
施用XFire+Spring构建Web Service(一)——helloWorld篇???????ApplicationContext?ctx?=?new?ClassPathXmlApplicationContext(
施用XFire+Spring构建Web Service(一)——helloWorld篇??????????????"client.xml");
施用XFire+Spring构建Web Service(一)——helloWorld篇???????helloWorld?=?(HelloWorld)?ctx.getBean("testWebService");
施用XFire+Spring构建Web Service(一)——helloWorld篇???????System.out.println(helloWorld.sayHelloWorld("阿蜜果"));
施用XFire+Spring构建Web Service(一)——helloWorld篇????}
施用XFire+Spring构建Web Service(一)——helloWorld篇}
施用XFire+Spring构建Web Service(一)——helloWorld篇

??? 在启动webservice_helloworld工程的情况下,运行WebServiceClientTest类,可看到控制台包含如下信息:

??? hello,阿蜜果

????由此可看出调用Web Service成功。

四.总结

????与Axis 相比,在实施Web Service时XFire更加简洁高效,并且XFire对Spring提供了强大的支持,可以非常方便地在Spring中使用XFire实施Web Service,因此XFire在短短的时间里成为了受Web Service开发者喜爱的框架。

   XFire为客户端提供了多种访问Web Service的方式,如果可以获取客户端的窄接口类,则可以采用窄接口类调用Web Service。如果仅能获取WSDL,XFire也可以采用动态反射的机制调用Web Service。XFire为Eclipse提供了一个可以根据WSDL生成客户端存根代码的插件,相信XFire也将为其它非Java语言提供类似的插 件。

技术可用性的一个很大的标准是它是否方便测试,XFire提供多种方式进行Web Service的测试,简单方便,给Web Service开发人员的测试工作带来了福音。

在 本文中,笔者通过一个简单的helloWorld的Web Service例子,详细地说明了用XFire+Spring构建Web Service时配置文件的相关配置,以及测试的各种方法,也让读者见识了XFire与Spring的无缝集成,希望对读者学习XFire有点帮助。

文章来源:

http://www.duduwolf.com/wiki/2007/569.html

热点排行