Java -- 在Eclipse上使用XFire开发WebService

终于,使用java完成了一个webservice的例子,其中的一个非常小的问题,折腾了我将近一天的时间。下面给出步骤,说明在java平台上如何开发webservice。

采用的工具:eclipse3.1.2 + tomcat5.5 + xfire1.1 。使用xfire开发webservice应该说非常的容易,只需要按照下面例子的步骤来做:

(1)在eclipse中新建一个dynamic web project ,假设名为xfirezhuweitest。

(2)导入xfire用户库。该库中应包含xfire-1.1目录下的xfire-all-1.1.jar文件,以及xfire-1.1\lib目录下的所有文件。

(3)将上述的xfire用户库中的所有文件拷贝到xfirezhuweitest项目的webcontent\web-inf\lib目录下。

(4)修改webcontent\web-inf\web.xml配置文件的内容,下面是修改后web.xml:

xfirezhuweitest

index.html

index.htm

index.jsp

default.html

default.htm

default.jsp

xfireservlet

org.codehaus.xfire.transport.http.xfireconfigurableservlet

xfireservlet

/servlet/xfireservlet/*

xfireservlet

/services/*

web.xml中添加的servlet映射表明,所有匹配“/services/*”的url请求全部交给org.codehaus.xfire.transport.http.xfireconfigurableservlet来处理。

(5)编写需要发布为webservice的java类,这个例子中是一个非常简单的mathservice.java。

package com.zhuweisky.xfiredemo;

public class mathservice

{

public int add(int a ,int b)

{

return a+b ;

}

}

(6)在webcontent\meta-inf目录下新建xfire文件夹,然后在xfire目录下添加一个xfire使用的配置文件services.xml,该配置文件中的内容反映了要将哪些java类发布为web服务。本例中的services.xml内容如下:

xml version="1.0" encoding="utf-8"?>

beans xmlns="http://xfire.codehaus.org/config/1.0">

service>

name>mathservicename>

namespace>http://com.zhuweisky.xfiredemo/mathservice

serviceclass>com.zhuweisky.xfiredemo.mathserviceserviceclass>

service>

beans>

xfire会借助spring来解析services.xml,从中提取需要发布为webservice的配置信息。

很多文章介绍到这里就完了,然而当我按照他们所说的启动webservice ,然后通过http://localhost:8080/xfirezhuweitest/services/mathservice?wsdl 来访问服务描述时,却抛出了异常,说services.xml文件不存在--

“org.springframework.beans.factory.beandefinitionstoreexception: ioexception parsing xml document from class path resource [meta-inf/xfire/services.xml]; nested exception is java.io.filenotfoundexception: class path resource [meta-inf/xfire/services.xml] cannot be opened because it does not exist”。

(7)非常关键的一点,就是这个小难题花费了我将近一天的时间。

在webcontent\web-inf目录下新建classes文件夹,然后需要将webcontent下的整个meta-inf文件夹剪切到新建的classes文件夹下。

到这里,项目的完整目录结构如下:

(8)在package explorer中选中xfirezhuweitest项目,右键->run as ->run on server,关联到你机器上的tomcat,然后会启动tomcat,以启动web服务。(注意,在进行此步骤之前,请先停止tomcat)

(9)在ie中输入 http://localhost:8080/xfirezhuweitest/services/mathservice?wsdl 会得到正确的web服务描述文档。

(10)测试刚发布的webservice。我使用c#动态调用web服务:

//c#

string url = "http://localhost:8080/xfirezhuweitest/services/mathservice" ;

object[] args ={1,2} ;

object result = esframework.webservice.webservicehelper.invokewebservice(url ,"add" ,args) ;

messagebox.show(result.tostring());

(关于c#动态调用web服务,请参见这里)

执行后,弹出对话框,显示结果是3。


======================================================
在最后,我邀请大家参加新浪APP,就是新浪免费送大家的一个空间,支持PHP+MySql,免费二级域名,免费域名绑定 这个是我邀请的地址,您通过这个链接注册即为我的好友,并获赠云豆500个,价值5元哦!短网址是http://t.cn/SXOiLh我创建的小站每天访客已经达到2000+了,每天挂广告赚50+元哦,呵呵,饭钱不愁了,\(^o^)/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值