一、 准备工作。
1、下载apache-cxf的应用包,地址:http://cxf.apache.org/download.html,我选择的是2.4.1版本。
二、发布webservices
1. 新建web project ,并加入apache-cxf-2.4.1\lib所有包,编写要发布的web service 接口和实现.这一步,与前面一样。
1)创建一个接口类,并加上webservice标记
import javax.jws.WebService;
@WebService
public interface HelloWorld {
public String sayHello(String text);
}
2)创建上面这个接口的实现类
import javax.jws.WebService;
@WebService(endpointInterface="test.HelloWorld")
public class HelloWorldImpl implements HelloWorld {
public String sayHello(String text) {
return "Hello" + text ;
}
}
@WebService 注解表示是要发布的web 服务,endpointInterface的值是该服务类对应的接口。
2. 在spring-cxf.xml配置发布的web service
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<bean id="hello" class="test.HelloWorldImpl" />
<jaxws:endpoint id="helloWorld" implementor="#hello"
address="/HelloWorld" />
</beans>
注意:<jaxws:endpoint id="helloWorld" implementor="#hello"
address="/HelloWorld" />
id:指在spring配置的bean的ID.
Implementor:指明具体的实现类.
Address:指明这个web service的相对地址,
3. 配置web.xml文件:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<!--spring配置文件放在WEB-INF目录下-->
<param-value>/WEB-INF/spring-cxf.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>
org.apache.cxf.transport.servlet.CXFServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
4.部署到tomcat服务器,输入:http://localhost:8080/<web-app-name>/HelloWorld?wsdl,将显示这个web service的wsdl.
注意:如果web.xml配置<servlet-name>CXFServlet</servlet-name>
<url-pattern>/ws/*</url-pattern>
则访问地址为:http://localhost:8080/<web-app-name>/ws/HelloWorld?wsdl
到此webservices就发布成功了。
三、创建一个客户端来调用webservices
1、同样新建java project ,并加入apache-cxf-2.0.7\lib所有包,添加到Build Path;
2、将webservice的接口类导出成jar包,也添加到Build Path,主要目的是客户端要用到服务端的HelloWorld这个类。如果不想导入这个jar包也可以,只要在客户端创建一个一摸一样的接口类:HelloWorld,特别要注意以下两点:
1)接口前面要添加@Webservice的标记,不然会抛出一个 javax.xml.ws.WebServiceException: Could not find wsdl:binding operation info for web method sayHelloWorld.
2)包路径也要一样,不然会抛出一个ClassCastException: $Proxy29 cannot be cast to...
3、配置spring-client.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schema/jaxws.xsd">
<!-- 这个class的包路径和类名和服务端提供web服务的接口一致-->
<bean id="client" class="test.HelloWorld"
factory-bean="clientFactory" factory-method="create"/>
<bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean">
<!-- 这个class的包路径和类名和服务端提供web服务的接口一致-->
<property name="serviceClass" value="test.HelloWorld"/>
<!-- 这个address一定要注意,正确的-->
<property name="address" value="http://localhost:8080/<web-app-name>/HelloWorld"/>
</bean>
</beans>
4.测试:
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import test.HelloWorld;
public class Test {
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext(
"spring-client.xml");
HelloWorld client = (HelloWorld) ctx.getBean("client");
String result = client.sayHello("Glen!");
System.out.println(result);
}
}
结果输出“Hello,Glen!”,测试通过,至此一个webservice的调用也成功了。
分享到:
相关推荐
- 使用Java语言,定义服务接口,通常是用Java注解(如JAX-WS的`@WebService`)来标识。这个接口将指定Web服务的端点、操作方法等信息。 5. **实现服务接口**: - 创建实现类,覆盖接口中的方法,提供实际的业务...
### WebService配置教程 #### 一、WebService简介与应用场景 **WebService**,即Web服务,是一种支持通过标准的网络协议(如HTTP)进行数据交换的服务技术。它允许不同平台、不同语言的应用程序之间进行交互而无需...
### NC63开发Webservice配置过程详解 #### 一、UAPStudio配置开发Webservice过程 ##### 1. 准备工作 为了在UAPStudio中配置开发Webservice,首先需要确保开发环境已经安装了必要的插件。具体来说,需要将`nc.uap....
标题中的“Axis和WebService配置使用之Hello”表明我们将探讨如何在Java环境中使用Axis库来创建和使用Web服务,实现一个简单的“Hello World”示例。 Axis是一个开源的Java SOAP(简单对象访问协议)工具包,它允许...
【标题】中的“webservice xfire整合spring(webservice配置采用注解)”是指将Xfire,一个早期的Web服务框架,与Spring框架结合使用,其中Web服务的配置通过Spring的注解方式进行。这种方式简化了配置,提高了开发...
**FileNet调用WebService配置详解** 在IT行业中,FileNet是一款强大的企业内容管理系统(Enterprise Content Management,ECM),主要用于管理企业内部的各种文档和信息。而Web Service是一种基于互联网的、松耦合...
标题 "axis+ksoap2开发webservice配置指南" 涉及到的是在Java环境中使用Axis框架和ksoap2库来创建和调用Web服务的过程。 Axis是Apache软件基金会的一个开源项目,它允许开发者通过简单的API来创建和部署Web服务,而...
webservice配置开发实例 包括文档及demo和lib axis lib activation.jar mail.jar xmlsec-1.4.3.jar axis-bin-1_3.zip webservice配置开发实例 文档介绍.doc 里面有详细介绍配置及使用方法 demo axisTest 自己...
Webservice配置文档主要涉及了如何在Windows环境下配置IIS服务器以及使用PowerBuilder 11.5创建和测试Webservice的过程。以下是对这些知识点的详细解释: 1. **配置IIS**: - IIS(Internet Information Services...
用友NC65-uapstudio webservice开发配置说明文档 用友NC65-erp开发工具uapstudio进行开发webservice时,需要对开发工具进行必要的设置。以下是uapstudio中的webservice开发配置说明: 一、UAPStudio中的webservice...
在IT行业中,Spring MVC是一个广泛使用的Java Web框架,它提供了强大的MVC(Model-View-Controller)架构来构建Web...这个例子对理解Spring MVC中的WebService配置非常有帮助,特别适合初学者和开发者快速上手实践。
本文将详细介绍如何配置并实现一个简单的WebService。 首先,我们使用Apache Axis2作为WebService的实现框架。Apache Axis2是一个强大的、高性能的Web服务引擎,支持多种Web服务规范,包括SOAP、RESTful等。以下是...
易飞WebService配置包括Windows系统环境配置和WebService配置两个部分。 1. Windows系统环境配置 在Windows Server 2003(或更高版本)操作系统中,需要设置数据执行保护,以确保系统的安全性和稳定性。 2. ...
### C# WebService 发布与 IIS 配置详解及常见问题解决 #### 一、IIS 安装与配置 在开始之前,确保已经安装了 Windows 的 Internet 信息服务 (IIS)。以下是如何安装 IIS 的步骤: 1. **打开控制面板**:通过开始...
Nginx实现负载均衡 web均衡负载 ...1)配置文件全配制ok 2)有两个完整的web服务做例子,可以直接运行 3)完整的日志内容,记录每次访问到哪个后台服务器 4)下载后可以直接运行 放心下载,在多个项目中运行。
【MyEclipse配置WebService六步曲】是一篇关于在MyEclipse中设置和使用Web服务的教程,特别针对初学者,使用了XFire框架。XFire是一个基于Java的SOAP框架,它利用STAX进行轻量级的信息处理,并提供对Web服务标准、...
在提供的压缩包文件“webService服务接口方案”中,可能包含了具体的代码示例、配置文件和其他参考资料,这些都可以帮助你更好地理解和实践上述步骤。记得根据自己的项目需求进行适当的修改和调整。同时,参考其他...