一、Axis2的下载和安装
1、可从http://ws.apache.org/axis2/ 下载Axis2的最新版本,目前最新版本的是1.6.2,两个文件分别是
axis2-1.6.2-bin.zip
axis2-1.6.2-war.zip
其中
axis2-1.6.2-bin.zip文件中包含了Axis2中所有的jar文件。
axis2-1.6.2-war.zip文件用于将WebService发布到Web容器中。
2、axis2-1.6.2-war.zip文件解压,将目录中的axis2.war文件放到<Tomcat安装目录>\webapps目录中,目的是为了测试下是否能在tomcat中运行。
3、
3.1、启动Tomcat,在浏览器地址栏中输入 http://localhost:8080/axis2/ 如看到axis2的主页面则安装成功。
3.2、点击Services,显示的链接地址为,http://localhost:8080/axis2/services/listServices,这个页面显示内容为webservice项目发布的class文件,如果发布成功的话,则会在这里看到并且可以点击,这里以LogonService为例,LogonService为一个class文件,checkUserRight为LogonService提供的一个方法供客户端调用,如下图所示:
二、编写和发布WebService
1、用POJO形式发布(无需配置)
(1)、在你的项目中,可以是web项目、也可以是JAVA项目,编写任何JAVA类,编译LogonService后将LogonService.class拷贝到<Tomcat安装目录>\webapps\axis2\WEB-INF\pojo目录中
(2)、(如果没有pojo目录,则建立该目录),当然也可以修改此设置,进入到<Tomcat安装目录>\webapps\axis2\WEB-INF\conf 打开axis2.xml,在102行如下图:
(3)、在浏览器地址栏中输入URL:http://localhost:8080/axis2/services/LogonService?wsdl,
得到如下界面说明成功。
<wsdl:definitions targetNamespace="http://ws.apache.org/axis2"><wsdl:types><xs:schema attributeFormDefault="qualified" elementFormDefault="unqualified" targetNamespace="http://ws.apache.org/axis2"><xs:element name="checkUserRight"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="Name" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element><xs:element name="checkUserRightResponse"><xs:complexType><xs:sequence><xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/></xs:sequence></xs:complexType></xs:element></xs:schema></wsdl:types><wsdl:message name="checkUserRightRequest"><wsdl:part name="parameters" element="ns:checkUserRight"/></wsdl:message><wsdl:message name="checkUserRightResponse"><wsdl:part name="parameters" element="ns:checkUserRightResponse"/></wsdl:message><wsdl:portType name="LogonServicePortType"><wsdl:operation name="checkUserRight"><wsdl:input message="ns:checkUserRightRequest" wsaw:Action="urn:checkUserRight"/><wsdl:output message="ns:checkUserRightResponse" wsaw:Action="urn:checkUserRightResponse"/></wsdl:operation></wsdl:portType><wsdl:binding name="LogonServiceSoap11Binding" type="ns:LogonServicePortType"><soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/><wsdl:operation name="checkUserRight"><soap:operation soapAction="urn:checkUserRight" style="document"/><wsdl:input><soap:body use="literal"/></wsdl:input><wsdl:output><soap:body use="literal"/></wsdl:output></wsdl:operation></wsdl:binding><wsdl:binding name="LogonServiceSoap12Binding" type="ns:LogonServicePortType"><soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/><wsdl:operation name="checkUserRight"><soap12:operation soapAction="urn:checkUserRight" style="document"/><wsdl:input><soap12:body use="literal"/></wsdl:input><wsdl:output><soap12:body use="literal"/></wsdl:output></wsdl:operation></wsdl:binding><wsdl:binding name="LogonServiceHttpBinding" type="ns:LogonServicePortType"><http:binding verb="POST"/><wsdl:operation name="checkUserRight"><http:operation location="checkUserRight"/><wsdl:input><mime:content type="application/xml" part="parameters"/></wsdl:input><wsdl:output><mime:content type="application/xml" part="parameters"/></wsdl:output></wsdl:operation></wsdl:binding><wsdl:service name="LogonService"><wsdl:port name="LogonServiceHttpSoap11Endpoint" binding="ns:LogonServiceSoap11Binding"><soap:address location="http://localhost:8080/axis2/services/LogonService.LogonServiceHttpSoap11Endpoint/"/></wsdl:port><wsdl:port name="LogonServiceHttpSoap12Endpoint" binding="ns:LogonServiceSoap12Binding"><soap12:address location="http://localhost:8080/axis2/services/LogonService.LogonServiceHttpSoap12Endpoint/"/></wsdl:port><wsdl:port name="LogonServiceHttpEndpoint" binding="ns:LogonServiceHttpBinding"><http:address location="http://localhost:8080/axis2/services/LogonService.LogonServiceHttpEndpoint/"/></wsdl:port></wsdl:service></wsdl:definitions>
(4)、测试接口方法,输入:http://localhost:8080/axis2/services/LogonService/checkUserRight?Name=fengjunjie
其中checkUserRight是方法名,Name为参数名,一定注意区分大小写,并要和类中的方法参数全部对应。
<ns:checkUserRightResponse><return>fengjunjie</return></ns:checkUserRightResponse>
注意:
在编写、发布和测试WebService时应注意如下几点:
(1)、POJO类不能使用package关键字声明包,上面已经强调过。
(2)、 Axis2在默认情况下可以热发布WebService,也就是说,将WebService的.class文件复制到pojo目录中时Tomcat不需要重新启动就可以自动发布WebService, 如果想取消Axis2的热发布功能,可以打开<Tomcat安装目录>\webapps\axis2\WEB-INF\conf\axis2.xml,
找到如下的配置代码:
<parameter name="hotdeployment">true</parameter>
将true改为false即可。要注意的是,Axis2在默认情况下虽然是热发布,但并不是热更新.
也就是说,一旦成功发布了WebService,再想更新该WebService,就必须重启Tomcat。
这对于开发人员调试WebService非常不方便,因此,在开发WebService时,可以将Axis2设为热更新。
在axis2.xml文件中找到
<parameter name="hotupdate">false</parameter>
将false改为true即可。
(3)、在浏览器中测试WebService时,如果WebService方法有参数,需要使用URL的请求参数来指定该WebService方法
参数的值,请求参数名与方法参数名要一致,例如,要测试checkUserRight方法,请求参数名应为name,如上面的URL所示。
(4)、 发布WebService的pojo目录只是默认的,如果读者想在其他的目录发布WebService,
可以打开axis2.xml文件,并在<axisconfig>元素中添加如下的子元素:
<deployer extension=".class" directory="my" class="org.apache.axis2.deployment.POJODeployer"/>
(5)、不同目录下的class不能重名,上面的配置允许在<Tomcat安装目录>\webapps\axis2\WEB-INF\my目录中发布WebService。
例如,将本例中的checkUserRight.class复制到my目录中也可以成功发布
(但要删除pojo目录中的SimpleService.class,否则WebService会重名)。
2、使用services.xml配置文件发布
第一种直接发布POJO的方式虽然实现了基本的webservice发布,但是这些类不能在任何包中,实际业务中使用报名来区分业务类型是很正常,尤其业务比较复杂的时候,为此,Axis2也允许将带包的POJO类发布成Web Service。
(1)、先实现一个POJO类,代码如下:
(2)、新建一个单独的一个文件夹文件夹名任意,在该目录下新建一个META-INF,在META-INF下新建一个services.xml,下,根据自己机器实际路径来放。
<?xml version="1.0" encoding="UTF-8"?> <service name="WithPageLogonService"> <description> Web Service例子 </description> <parameter name="ServiceClass"> com.sinosoft.webservice.HelloServiceNew </parameter> <messageReceivers> <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" /> <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver" /> </messageReceivers> </service>然后使用cmd命令进入打包目录就是刚才新建那个目录,运行 jar cvf ws.aar . 完成打包,实际上,.jar文件 也可以发布webservice,但axis2官方文档中建议使用.aar文件发布webservice.
最后将ws.aar文件复制到<Tomcat安装目录>\webapps\axis2\WEB-INF\services目录中,
启动Tomcat后,就可以调用这个WebService了。
另外services.xml文件中也可以直接指定WebService类的方法,如可以用下面的配置代码来发布WebService
Xml代码:
<service name=" WithPageLogonService"> <description> Web Service例子 </description> <parameter name="ServiceClass"> com.sinosoft.webservice.HelloServiceNew </parameter> <operation name="checkUserRight"> <messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/> </operation> </service>
如果想发布多个WebService,可以使用<serviceGroup>元素
XML代码如下:
相关推荐
【使用Axis2搭建WebService】是关于在Java环境中利用Apache Axis2框架创建Web服务的过程。Apache Axis2是一个流行的Web服务引擎,用于构建和部署SOAP(简单对象访问协议)和RESTful Web服务。 首先,搭建环境是关键...
### 使用Eclipse与Axis2框架搭建WebService服务端及调用接口教程 #### 一、概述 本文档将详细介绍如何利用Eclipse集成开发环境与Axis2框架来构建WebService服务端,并进一步探讨如何通过Java应用程序调用这些服务...
本教程将详细介绍如何使用Axis2来搭建Web服务,并探讨其与Spring框架的集成。 【描述】:虽然有多种Web服务技术,如XFire、CXF和JAX-WS,但Axis2以其易用性和与Spring的无缝集成而备受青睐。通过 Axis2,开发者可以...
【Eclipse + Axis2 发布 WebService】是一个关于在Eclipse集成开发环境中使用Apache Axis2框架创建并发布Web服务的教程。Apache Axis2是用于构建Web服务和Web服务客户端的高性能、灵活且可扩展的开源框架。以下是...
【描述】: "本教程详细介绍了如何使用axis2在eclipse和tomcat环境下构建webService服务,并阐述了如何让Android应用程序调用这些服务,包括传递自定义类型参数和集合。" 【标签】: "webService", "axis2" 【正文】...
Axis 是 Apache 维护的开源工具,它提供了生成服务端和客户端代码的能力,而 Eclipse 则提供了一个集成的开发环境,方便创建、调试和部署 Web Service。通过理解 Web Service 的概念、工作原理以及 Axis 和 Eclipse ...
本文将深入探讨使用Axis2开发Web服务的相关知识点,包括Axis2的基础概念、环境搭建、服务创建与发布、Eclipse集成及详细教程。 1. Axis2基础概念: - Web服务:是一种通过HTTP协议进行通信的应用程序,使得不同...
部署WebService涉及使用Eclipse集成开发环境结合Axis2框架来搭建Web服务。本文将详细介绍如何使用Eclipse 3.5.0 和 Axis2-1.3 版本进行WebService的部署,包括服务端和客户端的构建过程。 #### 二、版本准备 - ...
通过以上步骤,你已经完成了 Axis2 环境的搭建,创建并部署了一个简单的 Web Service,同时也学会了如何生成客户端代码来调用该服务。随着对 Axis2 框架的深入理解和实践,你可以构建更复杂的 Web Services,满足...
### Axis2在Eclipse中的搭建与使用详解 #### 一、前言 随着Web Services技术的发展,Axis2作为Apache组织下的一个开源项目,为开发者提供了简单而强大的工具来实现Web Services的功能。本文将详细介绍如何在Eclipse...
3. **生成 Stub 类**:使用Axis1的wsdl2java工具,根据Java类生成服务接口(Skeleton)和服务实现(Stub)类。这一步可以通过命令行完成,或者使用IDE如Eclipse中的插件。例如,运行以下命令: ```bash wsdl2java -...
### Eclipse 下开发 Axis2 Web 服务的详细指南 #### 一、环境搭建与配置 **1.1 环境需求** 为了确保能够顺利地在 Eclipse 中开发 Axis2 Web 服务,首先需要准备好以下环境: - **开发工具**: Eclipse IDE(推荐...
### Eclipse中使用Axis服务器搭建Web Service 的详细过程与知识点 #### 一、环境准备与配置 **1.1 软件下载准备** 为了在Eclipse中使用Axis服务器搭建Web Service,首先需要准备好一系列必要的软件资源。具体包括...
本文将详细介绍使用Apache Axis搭建WebService框架的操作步骤,包括创建Web项目、配置相关环境、编写WebService服务程序等,并通过一个简单示例来演示整个过程。 #### 一、准备工作 在开始之前,确保已经安装了...
启动 Tomcat,访问 `http://localhost:<port>/axis2/`,如果显示 Axis2 的欢迎页面,说明环境搭建成功。 2. **开发 Axis2 Web 服务** - 创建一个新的 Web 项目,例如 `axis2demo`。 - 将 `axis2-1.4.1\lib` 目录...
本文档主要介绍使用 Axis2 进行 WebService 开发的基本步骤和技术要点。Axis2 是 Apache 组织下的一个开源项目,它提供了一种简单有效的方式来构建和部署 WebServices。本文档通过一个简单的 HelloWorld 示例来展示...
为了能够顺利地进行Axis2 WebService的开发工作,首先需要完成必要的软件环境搭建。 - **下载Axis2相关jar包**:访问[Axis官方网站](http://axis.apache.org/axis2/java/core/download.cgi),获取最新版本的依赖包...
本文旨在介绍如何使用 Axis2 开发 Web Services 的全过程,包括环境搭建、插件安装等基础准备工作,以及具体的开发流程与实例演示。 #### 1. 环境搭建 ##### 1.1 安装配置 JDK、Tomcat 和 Eclipse **JDK (Java ...