1、首先启动web服务HelloService。见:http://healthandbeauty.iteye.com/blog/1614845
把tomcat启动起来,就可以访问HelloService服务了。要做的工作的就通过Client类来访问Helloservice服务。具体实现代码过程见:http://healthandbeauty.iteye.com/blog/1614845
2、在elicpse里面新建一个类FaceClient 代码如下:
package net.chnbs.xfire.helloservice;
import java.net.MalformedURLException;
import java.net.URL;
import org.codehaus.xfire.client.Client;
import org.codehaus.xfire.transport.http.CommonsHttpMessageSender;
/**
*fileName: FaceClient.java
*author:forrest li
*time: 2012-7-31 下午08:07:13
**/
public class FaceClient {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Object[] result = { "aaaa" };
Client client = null;
try {
client = new Client(new URL("http://localhost:8080/hfa/services/HelloService?wsdl"));
client.setProperty(CommonsHttpMessageSender.HTTP_TIMEOUT, "10000");
result = client.invoke("sayHello", result);
System.out.print(result[0]);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
}
Client只有一个参数,URL,这是Server服务器端的提供的webservice WSDL地址。然后调用invoke方法,第二个入参表示服务器端HelloServier方法sayHello方法的入参。
运行结果如下:
from service say hello!lizh
分享到:
相关推荐
在IT行业中,Web服务是一种广泛使用的接口调用方式,它允许不同的系统之间通过网络交换数据。其中,Web Service最常用的标准之一是SOAP(Simple Object Access Protocol),它基于XML格式进行通信。Xfire是一款古老...
XFire(现称为CXF)是Java平台上的一个开源框架,专门用于构建和消费Web服务。本篇将深入探讨XFire Web服务的调用代码及其相关知识点。 一、Web服务基础 Web服务基于开放标准,如SOAP(Simple Object Access ...
首先,我们需要创建一个简单的Web服务类。在这个例子中,我们将创建一个名为`MathService`的类,该类包含一个`add`方法,用于计算两个整数之和。 ```java package com.kuaff.xfire.samples; public class ...
public class XFireClient { public static void main(String[] args) { HelloWorldService service = new HelloWorldServiceProxy("http://localhost:8080/helloworld?wsdl"); String response = service....
[浏览器访问Web Services](pic) - 创建Web Service Client。在MyEclipse中选择“New”>“Others”>“MyEclipse”>“WebService”>“WebService Client”。   - [MyEclipse官方文档]...
根据提供的文件名,`spring_xfire_client`可能是客户端项目,包含客户端的Spring配置和主方法,用于调用服务器端提供的Web服务。而`spring_xfire_server`则是服务器端项目,包含Web服务的实现和发布配置。 五、...
Spring是一个广泛应用的Java企业级开发框架,而XFire是早期的Web服务实现库,它提供了轻量级、高效的SOAP(简单对象访问协议)服务支持。虽然XFire已被Apache CXF所取代,但理解其与Spring的集成对于理解现代Web服务...
1. **简单易用**:XFire通过注解或者XML配置文件来绑定Java类和方法,使得开发Web服务变得简单直观。 2. **高性能**:XFire使用了高效的XML解析器,如DOM4J,以提高服务处理速度。 3. **全面支持**:它支持多种协议...
2. **编写Spring配置**:在Spring配置文件中,使用`<xfire:service>`或`<bean>`标签声明Web服务,指定接口、实现类和相关属性。 3. **暴露服务**:通过添加`<xfire:transport>`标签,你可以配置XFire使用HTTP、HTTPS...
XFire(现已被Apache CXF项目吸收)是一个基于Java的Web服务栈,它简化了SOAP(简单对象访问协议)和WS-*(Web服务扩展)规范的实现。XFire提供了一种轻量级、快速且易于使用的API,使得开发人员可以快速地将Java...