http://lixinye0123.iteye.com/blog/318281
附eclipse项目XFireZhuweiTest.rar
,但是需要手动将xfire jar导入
,下载地址:
------------------------------------客户端
先贴上客户端
的代码,需要开启soap
//建立一个参数数组,存储要访问的提供soap服务的计算机的地址与程序
$arrOptions=array(
'uri'=>'http://localhost:81/',
'location'=>'http://localhost:81/XFireZhuweiTest/services/MathService', //注意: 这个location指定的是server端代码在服务器中的具体位置, 我的是在本地根目录下的soap目录中,
'trace'=>true,
);
$SoapClient = new SoapClient(null,$arrOptions); //实例化客户端对象
echo $SoapClient->Add(20,30); //调用服务器端的函数add并返回值50
?>
-----------------------------服务器端
采用的工具: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内容如下:
MathService
http://com.zhuweisky.xfireDemo/MathService
com.zhuweisky.xfireDemo.MathService
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:81/XFireZhuweiTest/services/MathService?wsdl 会得到正确的web服务描述文档。
(10)测试刚发布的webService。我使用C#动态调用Web服务:
//C#
string url = "http://localhost:81/XFireZhuweiTest/services/MathService" ;
object[] args ={1,2} ;
object result = ESFramework.WebService.WebServiceHelper.InvokeWebService(url ,"Add" ,args) ;
MessageBox.Show(result.ToString());
(关于C#动态调用Web服务,请参见这里)
执行后,弹出对话框,显示结果是3。
http://lixinye0123.iteye.com/blog/318281 测试成功,eclipse项目名XFireZhuweiTest
http://lkjust08.iteye.com/blog/508843 xfire 开发基础篇
http://hero59876.iteye.com/blog/509116
http://hideto.iteye.com/blog/59750
http://httplei.iteye.com/blog/419313
http://hi.baidu.com/bailang3106/blog/item/a0657c22a7fa47ae4723e84b.html Axis
--------------------------------------java+xfire(web service) + php 客户端 之文件加密
------java WS和加密:
com.ttk.util.crypt包 加密
com.zhuweisky.xfireDemo包 Webservice
-------php客户端代码
//建立一个参数数组,存储要访问的提供soap服务的计算机的地址与程序
$arrOptions=array(
'uri'=>'http://localhost:81/',
'location'=>'http://localhost:81/XFireZhuweiTest/services/MathService', //注意: 这个location指定的是server端代码在服务器中的具体位置, 我的是在本地根目录下的soap目录中,
'trace'=>true,
);
$SoapClient = new SoapClient(null,$arrOptions); //实例化客户端对象
//echo $SoapClient->Add(20,30); //调用服务器端的函数add并返回值50
echo $SoapClient->Excute('d:/extjs_upload.doc');
?>
分享到:
2009-11-03 18:13
浏览 3099
评论