使用Axis2开发WebService

一、准备

1、下载Axis2、eclipse插件

axis2-1.6.2-war.zip:

http://mirror.bjtu.edu.cn/apache//axis/axis2/java/core/1.6.2/axis2-1.6.2-war.zip

axis2-1.6.2-bin.zip:

http://mirror.bjtu.edu.cn/apache//axis/axis2/java/core/1.6.2/axis2-1.6.2-bin.zip

axis2-eclipse-codegen-plugin-1.6.2.zip:

http://www.apache.org/dyn/mirrors/mirrors.cgi/axis/axis2/java/core/1.6.2/axis2-eclipse-codegen-plugin-1.6.2.zip

axis2-eclipse-service-plugin-1.6.2.zip:

http://www.apache.org/dyn/mirrors/mirrors.cgi/axis/axis2/java/core/1.6.2/axis2-eclipse-service-plugin-1.6.2.zip

 

2、部署

解压axis2-1.6.2-war.zip将axis2.war部署到tomcat,并访问http://localhost:8080/axis2/

 

3、安装eclipse插件

解压插件,直接将文件拷到plugins目录中。打开eclipse,在package explorer 中点击右键--->选择new---->other

 
技术分享
 

二、开发服务端

1、建Java Project项目,名称为“myservice”,并创建服务类

 

Java代码 
  1. package com.my.server;    
  2.     
  3. public class SimpleServer {  
  4.     public String simpleMethod(String name) {    
  5.         return name + "说:走别人的路,让别人无路可走。";    
  6.     }  
  7. }  

1、在eclispe 的package Explorer 中点击右键,在菜单中选择新建--->other...----->Axis2 Service Archiver。

技术分享
 

2、点击next进入类选择页面,在Class File Location选择框中选择类所在的文件夹,即java.class文件所存放位置的根目录。

技术分享
 

3、点击next进入选择 wsdl文件,选择skip wsdl。

技术分享
 

4、点击next进入选择jar文件页面。(没有用到外部jar,点击next直接跳过)

技术分享
 

5、点击next进入选择xml页面。勾选Generate the service xml automatically。

技术分享
 

6、点击next进入生成xml文件页面。在service name 里填写这个服务所起的名字(simpleServer),在class name中填写要发布的类(全路径),然后点击load 按钮。

技术分享
 

7、点击next 进入的是输出artiver文件页面,先在output File location 中选择要输出的路径,在output  File Name中输入artiver文件的名称(simpleServer)。

技术分享
 

 

8、点击finish ,如果看到如下的画面,恭喜你,服务发布成功啦。

技术分享
 

9、把aar文件放入tomcat中发布。

把生成的aar文件拷贝到tomcat目录中的axis2项目的service目录中位置如图。

技术分享
 

 

10、启动tomcat,在地址栏中输入http://localhost:8080/axis2 ,你会看到axis2的欢迎画面。

技术分享
 
技术分享
 
技术分享
 

三、开发客户端

将Dynamic web Project项目,名称为client。

1、在eclispe 的package Explorer 中点击右键,在菜单中选择新建--->other...----->Axis2 Code Generator。

技术分享
 

2、点击next进入,选择从wsdl文件来产生java文件。

技术分享
 

3、点击next然后选择wsdl文件。

技术分享
 

4、点击next,进入设置页面,用默认的设置。

技术分享
 

5.、点击next,选择输出文件的路径。

技术分享
 

6、点击next,如果看到这个页面,已经生成代码成功。

技术分享
 

7、引入jar包(\axis2-1.6.2\lib)。

技术分享
 

8、编写测试方法调用服务。

import com.my.server.SimpleServerStub;

public class SimpleClient {  
   
 public static void main(String[] args) throws Exception{  
    
  //初始化桩文件  
  SimpleServerStub stub = new SimpleServerStub();  
  //初始化SimpleMethod方法。  
  SimpleServerStub.SimpleMethod request = new  SimpleServerStub.SimpleMethod();  
  //调用simpleMethod的setName方法。  
  request.setName("zt");  
  //  
  System.out.println(stub.simpleMethod(request).get_return());
 }  
}  

参考:http://blog.csdn.net/yangsen251024/article/details/7043043

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。