axis2来开发webService 简单示例详解

本文详细介绍了如何使用Axis2进行Web Service开发,包括Axis2的下载与安装,创建Web项目,编写服务类,配置web.xml和服务描述文件services.xml,以及如何启动服务并验证。同时,文章还解释了services.xml中的关键配置,如服务名称、服务参数、消息接收器等,以及如何编写客户端调用服务。
摘要由CSDN通过智能技术生成

axis2的下载与安装
在使用之前当然需要先安装axis2相关的服务 ,安装axis2服务之前当然要先下载相关安装文件。下载地址:
http://axis.apache.org/axis2/java/core/download.cgi
可以下载如下两个zip包: axis2-1.5.4-bin.zip axis2-1.5.4-war.zip,其中 axis2-1.5.4-bin.zip文件中包含了Axis2中所有的jar文件, axis2-1.5.4-war.zip文件用于将WebService发布到Web容器中。将axis2-1.5.4-war.zip文件解压到相应的目录,将目录中的axis2.war文件放到Tomcat安装目录\webapps目录中,并启动Tomcat,在浏览器地址栏中输入如下的URL: http://localhost:8080/axis2/,如看到axis2的主页面则安装成功。

好啦。安装完毕之后就开始我们的webservice了

1 先新建一个web project 名称为HelloWorldTest
然后再建一个服务类 HelloWorld

package com.hjy;

public class HelloWorld {
    public String getHello(String s){
        return "hello"+s;
    }
    public String getWorld(String s){
        return "world"+s;
    }
    public String getHelloWorld(){
        return "helloWrold";
    }

}

2 修改web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>HelloWorldTest</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <!-- 加载Axis -->  
<servlet>  
<servlet-name>AxisServlet</servlet-name>  
<servlet-class>org.apache.axis2.transport.http.AxisServlet</servlet-class>  
<load-on-startup>1</load-on-startup>  
</servlet>  
<servlet-mapping>  
<servlet-name>AxisServlet</servlet-name>  
<url-pattern>/services/*</url-pattern>  
</servlet-mapping>  
</web-app>

3把tomcat安装目录下的webapps/axis2/WEB-INF下的modules、service和conf文件件拷至HelloWorld下的WEB-INF目录下。把lib下的如下jar包也拷过去。然后在services下新建HelloWorld/META-INF路径,META-INF下新建services.xml,内容如下

<?xml version="1.0" encoding="UTF-8"?>


<service name="HelloWorld">    
    <description>    
        HelloWorld Service Example  
    </description>    
    <parameter name="ServiceClass">    
        com.hjy.HelloWorld  
    </parameter>    
    <operation name="getHello">    
        <messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />    
    </operation>    
    <operation name="getWorld">    
        <messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />    
    </operation>    
    <operation name="getHelloWorld">    
<!-- 这里要注意,当没有返回值时才用   
org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver,没有参数还是用RPCMessageReceiver-->  
        <messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />    
    </operation>    
</service>  

下面我们来说一下这里service.xml的配置详解:
1) 这里指定服务名称。
2) 服务描述
3) 服务级参数
在services.xml文件中,我们可以直接在service节点下定义参数,这些参数供消息上下文(在运行时)、AxisService或者AxisOperation访问。参数有一个必选参数和可选参数:参数名称是必选参数。这里的服务参数为指定服务类。
4)
服务级消息接收器
Axis2中消息接收器是特殊的处理器,是In路径(请求路径)中的最后一个处理器。Web服务中的每个操作都有他自己的消息接收器,而且不同的操作可以有不同的消息接收器。消息接收器是依赖于消息交换模式的,所以我们必须为不同的消息交换模式指定不同的消息接收器。
怎样才能给所有的操作指定相同的消息接收器呢?只要添加服务级消息接收器即可。如此我们就不必在操作级别指定消息接收器了。我们要做的是指定服务级消息接收器。而在部署时,Axis2会自动给操作选择正确的消息接收器。这里我们指定
Operation 级消息接收器
前文描述了如何指定服务级消息接收器。但是,我们也可以为不同的操作指定不同的消息接收器,这需要在operation中指定messageReceiver标签

最后说明一个编写用于部署服务组的services.xml文件的问题
要在单个服务包文件中部署多个服务,服务组是一个便捷方法。当然,这些服务之间应该存在逻辑关系。用于服务组的services.xml文件和用于单个服务的,它们之间唯一的区别就是根元素。用于服务组的,根元素是serviceGroup,我们可以在serviceGroup元素内部定义多个service元素。

<serviceGroup>
<service name=service1>
......................
</service>
<service name=service2>
...........................
</service>
</serviceGroup>

启动tomcat后访问http://127.0.0.1:8080/HelloWorldTest/services/HelloWorld?wsdl
能看到服务信息了。

4下面我们就可以写一个客户端来调用我们写的服务程序了。

package com.hjy;

import javax.xml.namespace.QName;  
import org.apache.axis2.addressing.EndpointReference;  
import org.apache.axis2.client.Options;  
import org.apache.axis2.rpc.client.RPCServiceClient;  

public class MyClient {
    public static void main(String[] args) {  
        String url = "http://localhost:8080/HelloWorldTest/services/HelloWorld";  
        String result = null;  
        try {  
        // 使用RPC方式调用WebService   
        RPCServiceClient serviceClient = new RPCServiceClient();  
        Options options = serviceClient.getOptions();  
        // 指定调用WebService的URL   
        EndpointReference targetEPR = new EndpointReference(url);  
        options.setTo(targetEPR);  
        // 在创建QName对象时,QName类的构造方法的第一个参数表示WSDL文件的命名空间名,也就是<wsdl:definitions>元素的targetNamespace属性值   
        // // 指定要调用的getWorld方法及WSDL文件的命名空间.....   
        QName opAddEntry = new QName("http://hjy.com", "getWorld");  
        //    
        // 指定getGreeting方法的参数值,如果有多个,继续往后面增加即可,不用指定参数的名称   
        Object[] opAddEntryArgs = new Object[] { "java" };  
        // 返回参数类型,这个和axis1有点区别   
        // invokeBlocking方法有三个参数,其中第一个参数的类型是QName对象,表示要调用的方法名;   
        // 第二个参数表示要调用的WebService方法的参数值,参数类型为Object[];   
        // 第三个参数表示WebService方法的返回值类型的Class对象,参数类型为Class[]。   
        // 当方法没有参数时,invokeBlocking方法的第二个参数值不能是null,而要使用new Object[]{}   
        // 如果被调用的WebService方法没有返回值,应使用RPCServiceClient类的invokeRobust方法,   
        // 该方法只有两个参数,它们的含义与invokeBlocking方法的前两个参数的含义相同   
        // 指定getGreeting方法返回值的数据类型的Class对象.....   
        Class[] classes = new Class[] { String.class };  
        // 调用getGreeting方法并输出该方法的返回值.......   


        result = (String) serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0];  
        System.out.println(result);  

        // 下面是调用getHello方法的代码,这些代码与调用getWorld方法的代码类似   
        // classes = new Class[] {String.class};   
        opAddEntry = new QName("http://hjy.com", "getHello");  
        opAddEntryArgs = new Object[] { "你好啊" };  
        System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);  

        // 下面是调用getHelloWorld方法的代码   
        opAddEntry = new QName("http://hjy.com", "getHelloWorld");  
        System.out.println(serviceClient.invokeBlocking(opAddEntry,new Object[]{}, classes)[0]);  
        } catch (Exception e) {  
        e.printStackTrace();  
        }  
        }  
        }  

5 运行结果

这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值