eclipse+axis2+webservice开发实例

1.参考文献:

1.利用Java编写简单的WebService实例  http://nopainnogain.iteye.com/blog/791525

2.Axis2与Eclipse整合开发Web Service  http://tech.ddvip.com/2009-05/1242968642120461.html

3.http://blog.csdn.net/lightao220/article/details/3489015

4.http://clq9761.iteye.com/blog/976029

5.使用Eclipse+Axis2+Tomcat构建Web Services应用(实例讲解篇)

2.实例1(主要看到[2])

2.1.系统功能:

开发一个计算器服务CalculateService,这个服务包含加(plus)、减(minus)、乘(multiply)、除(divide)的操作。

2.2.开发前准备:

  1. 安装Eclipse-jee;
  2. 下载最新版本的Axis2,网址http://axis.apache.org/axis2/java/core/download.cgi ,选择Standard Binary Distribution的zip包,解压缩得到的目录名axis2-1.4.1,目录内的文件结构如下:

2.3.开发前配置:

在Eclipse的菜单栏中,Window --> Preferences --> Web Service --> Axis2 Perferences,在Axis2 runtime location中选择Axis2解压缩包的位置,设置好后,点"OK"即行。(如图)

2.4.开发Web Service:

(1)新建一个Java Project,命名为"WebServiceTest1"
(2)新建一个class,命名为"CalculateService",完整代码如下:

[java] view plaincopy

  1. package edu.sjtu.webservice;
  2. /**
  3. * 计算器运算
  4. * @author rongxinhua
  5. */
  6. public class CalculateService {
  7. //加法
  8. public float plus(float x, float y) {
  9. return x + y;
  10. }
  11. //减法
  12. public float minus(float x, float y) {
  13. return x - y;
  14. }
  15. //乘法
  16. public float multiply(float x, float y) {
  17. return x * y;
  18. }
  19. //除法
  20. public float divide(float x, float y) {
  21. if(y!=0)
  22. {
  23. return x / y;
  24. }
  25. else
  26. return -1;
  27. }
  28. }

(3)在"WebServiceTest1"项目上new --> other,找到"Web Services"下面的"Web Service";

(4)下一步(next),在出现的Web Services对象框,在Service implementation中点击"Browse",进入Browse Classes对象框,查找到我们刚才写的写的CalculateService类。(如下图)。点击"ok",则回到Web Service话框。

(5)在Web Service对话框中,将Web Service type中的滑块,调到"start service“的位置,将Client type中的滑块调到"Test client"的位置。

(6)在Web Service type滑块图的右边有个"Configuration",点击它下面的选项,进入Service Deployment Configuration对象框,在这里选择相应的Server(我这里用Tomcat6.0)和Web Service runtime(选择Apache Axis2),如下图:

(7)点OK后,则返回到Web Service对话框,同理,Client type中的滑块右边也有"Configuration",也要进行相应的置,步骤同上。完成后,Next --> next即行。进入到Axis2 Web Service Java Bean Configuration,我们选择Generate a default services.xml,如下图所示:

(8)到了Server startup对话框,有个按键"start server"(如下图),点击它,则可启动Tomcat服务器了。

(9)等启完后,点击"next -- > next",一切默认即行,最后,点击完成。最后,出现如下界面:(Web Service Explorer),我们在这里便可测试我们的Web服务。(使用浏览器打开的话使用如下地址:http://127.0.0.1:19189/wse/wsexplorer/wsexplorer.jsp?org.eclipse.wst.ws.explorer=3)。如下图所示:

注:在浏览器中打开Web Service Explorer(有时候在eclipse中关闭了webservice explorer,可以用这种方法打开)

首先登录地址:http://127.0.0.1:19189/wse/wsexplorer/wsexplorer.jsp。然后在网页右上角选择Web Service Exoplorer标签。然后输入WSDL地址:http://localhost:8080/WebServiceTest1/services/CalculateService?wsdl 。这个wsdl地址就是我们刚才发布服务的那个wsdl。点击go,如下图所示:

然后就可以看到如下界面了:

(10)测试比较简单,例如,我们选择一个"plus"的Operation(必须是CalculateServiceSoap11Binding),出现下图,在x的输入框中输入1,在y的输入框中输入2,点击"go",便会在status栏中显示结果3.0。其他方法的测试也类似。结果如上图所示。

2.5.CalculateService客户端调用程序

前面我们已经定义好了加减乘除的方法并将这些方法发布为服务,那么现在要做的就是调用这些服务即可。客户端调用程序如下代码所示:CalculateServiceTest.java

[java] view plaincopy

  1. package edu.sjtu.webservice.test;
  2. import javax.xml.namespace.QName;
  3. import org.apache.axis2.AxisFault;
  4. import org.apache.axis2.addressing.EndpointReference;
  5. import org.apache.axis2.client.Options;
  6. import org.apache.axis2.rpc.client.RPCServiceClient;
  7. public class CalculateServiceTest {
  8. /**
  9. * @param args
  10. * @throws AxisFault
  11. */
  12. public static void main(String[] args) throws AxisFault {
  13. // TODO Auto-generated method stub
  14. // 使用RPC方式调用WebService
  15. RPCServiceClient serviceClient = new RPCServiceClient();
  16. Options options = serviceClient.getOptions();
  17. // 指定调用WebService的URL
  18. EndpointReference targetEPR = new EndpointReference(
  19. "http://localhost:8080/WebServiceTest1/services/CalculateService");
  20. options.setTo(targetEPR);
  21. // 指定要调用的计算机器中的方法及WSDL文件的命名空间:edu.sjtu.webservice。
  22. QName opAddEntry = new QName("http://webservice.sjtu.edu","plus");//加法
  23. QName opAddEntryminus = new QName("http://webservice.sjtu.edu","minus");//减法
  24. QName opAddEntrymultiply = new QName("http://webservice.sjtu.edu","multiply");//乘法
  25. QName opAddEntrydivide = new QName("http://webservice.sjtu.edu","divide");//除法
  26. // 指定plus方法的参数值为两个,分别是加数和被加数
  27. Object[] opAddEntryArgs = new Object[] { 1,2 };
  28. // 指定plus方法返回值的数据类型的Class对象
  29. Class[] classes = new Class[] { float.class };
  30. // 调用plus方法并输出该方法的返回值
  31. System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);
  32. System.out.println(serviceClient.invokeBlocking(opAddEntryminus,opAddEntryArgs, classes)[0]);
  33. System.out.println(serviceClient.invokeBlocking(opAddEntrymultiply,opAddEntryArgs, classes)[0]);
  34. System.out.println(serviceClient.invokeBlocking(opAddEntrydivide,opAddEntryArgs, classes)[0]);
  35. }
  36. }

运行结果:

[java] view plaincopy

  1. 3.0
  2. -1.0
  3. 2.0
  4. 0.5

3.实例2.HelloService

(1)首先定义服务方法,代码如下所示:

[java] view plaincopy

  1. package edu.sjtu.webservice;
  2. public class HelloService {
  3. public String sayHelloNew() {
  4. return "hello";
  5. }
  6. public String sayHelloToPersonNew(String name) {
  7. if (name == null) {
  8. name = "nobody";
  9. }
  10. return "hello," + name;
  11. }
  12. public void updateData(String data) {
  13. System.out.println(data + " 已更新。");
  14. }
  15. }

(2)参考实例1将这个方法发布为服务。

(3)编写客户端代码调用WebService(主要参考[5])

本文例子与其他例子最大的不同就在这里,其他例子一般需要根据刚才的服务wsdl生成客户端stub,然后通过stub来调用服务,这种方式显得比较单一,客户端必须需要stub存根才能够访问服务,很不方面。本例子的客户端不采用stub方式,而是一种实现通用的调用方式,不需要任何客户端存根即可访问服务。只需要指定对于的web servce地址、操作名、参数和函数返回类型即可。代码如下所示:

HelloServiceTest2.java

[java] view plaincopy

  1. package edu.sjtu.webservice.test;
  2. import javax.xml.namespace.QName;
  3. import org.apache.axis2.AxisFault;
  4. import org.apache.axis2.addressing.EndpointReference;
  5. import org.apache.axis2.client.Options;
  6. import org.apache.axis2.rpc.client.RPCServiceClient;
  7. public class HelloServiceTest2 {
  8. private RPCServiceClient serviceClient;
  9. private Options options;
  10. private EndpointReference targetEPR;
  11. public HelloServiceTest2(String endpoint) throws AxisFault {
  12. serviceClient = new RPCServiceClient();
  13. options = serviceClient.getOptions();
  14. targetEPR = new EndpointReference(endpoint);
  15. options.setTo(targetEPR);
  16. }
  17. public Object[] invokeOp(String targetNamespace, String opName,
  18. Object[] opArgs, Class<?>[] opReturnType) throws AxisFault,
  19. ClassNotFoundException {
  20. // 设定操作的名称
  21. QName opQName = new QName(targetNamespace, opName);
  22. // 设定返回值
  23. // Class<?>[] opReturn = new Class[] { opReturnType };
  24. // 操作需要传入的参数已经在参数中给定,这里直接传入方法中调用
  25. return serviceClient.invokeBlocking(opQName, opArgs, opReturnType);
  26. }
  27. /**
  28. * @param args
  29. * @throws AxisFault
  30. * @throws ClassNotFoundException
  31. */
  32. public static void main(String[] args) throws AxisFault,
  33. ClassNotFoundException {
  34. // TODO Auto-generated method stub
  35. final String endPointReference = "http://localhost:8080/WebServiceTest1/services/HelloService";
  36. final String targetNamespace = "http://webservice.sjtu.edu";
  37. HelloServiceTest2 client = new HelloServiceTest2(endPointReference);
  38. String opName = "sayHelloToPersonNew";
  39. Object[] opArgs = new Object[] { "My Friends" };
  40. Class<?>[] opReturnType = new Class[] { String[].class };
  41. Object[] response = client.invokeOp(targetNamespace, opName, opArgs,
  42. opReturnType);
  43. System.out.println(((String[]) response[0])[0]);
  44. }
  45. }

运行该程序,点击Run As->Java application,可以看到控制台端口的输出是:Hello, My Friends,表明客户端调用成功。该例子最大的不同和优势表现在客户端的调用方式,或者说是发起服务调用的方式,虽然比起客户端stub存根的方式,代码稍多,但是这种方式统一,不需要生产stub存根代码,解决了客户端有很多类的问题。如果读者对这些代码进一步封装,我想调用方式很简单,只需要传递相关参数,这更好地说明了服务调用的优势。而且这种方式更加简单明了,一看便知具体含义。而不需要弄得stub类的一些机制。

(4)改写客户端调用服务的代码

(3)中提到的客户端应用代码写的略微有些繁杂,下面将上面的客户端调用service程序进行改写,简洁了许多。代码如下:

HelloServiceTest.java

[java] view plaincopy

    1. import javax.xml.namespace.QName;
    2. import org.apache.axis2.AxisFault;
    3. import org.apache.axis2.addressing.EndpointReference;
    4. import org.apache.axis2.client.Options;
    5. import org.apache.axis2.rpc.client.RPCServiceClient;
    6. public class HelloServiceTest {
    7. public static void main(String args[]) throws AxisFault {
    8. // 使用RPC方式调用WebService
    9. RPCServiceClient serviceClient = new RPCServiceClient();
    10. Options options = serviceClient.getOptions();
    11. // 指定调用WebService的URL
    12. EndpointReference targetEPR = new EndpointReference("http://localhost:8080/WebServiceTest1/services/HelloService");
    13. options.setTo(targetEPR);
    14. // 指定要调用的sayHelloToPerson方法及WSDL文件的命名空间
    15. QName opAddEntry = new QName("http://webservice.sjtu.edu","sayHelloToPersonNew");
    16. // 指定sayHelloToPerson方法的参数值
    17. Object[] opAddEntryArgs = new Object[] { "xuwei" };
    18. // 指定sayHelloToPerson方法返回值的数据类型的Class对象
    19. Class[] classes = new Class[] { String.class };
    20. // 调用sayHelloToPerson方法并输出该方法的返回值
    21. System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);
    22. }
    23. }
时间: 2024-10-10 09:05:37

eclipse+axis2+webservice开发实例的相关文章

eclipse+webservice开发实例

1.參考文献: 1.利用Java编写简单的WebService实例  http://nopainnogain.iteye.com/blog/791525 2.Axis2与Eclipse整合开发Web Service  http://tech.ddvip.com/2009-05/1242968642120461.html 3.http://blog.csdn.net/lightao220/article/details/3489015 4.http://clq9761.iteye.com/blog

axis2 webService开发指南(1)

参考文件:blog.csdn.net/IBM_hoojo http://hoojo.cnblogs.com/ 1 WebService简介 WebService让一个程序可以透明的调用互联网的程序,不管具体的实现细节.只要WebService公开了服务接口,远程客户端就可以调用服务.WebService是基于Http的组件服务,Webservice是分散式应用程序的发展趋势. 1.2 WebService的开源实现 WebService更多是一种标准,而不是一种具体的技术.不同的平台,不同的语言

axis2 webService开发指南(3)

复杂对象类型的WebService 这次我们编写复杂点的WebService方法,返回的数据是我们定义属性带getter.setter方法JavaBean,一维数组.二维数组等 1.服务源代码 新建一个web project项目 代码如下: package com.amy.service.imple; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util

axis2 webservice入门知识(JS,Java,PHP调用实例源码)

背景简介 最近接触到一个银行接口的案子,临时需要用到axis2 webservice.自己现学现总结的一些东西,留给新手.少走弯路. Axis2简介 ①采用名为 AXIOM(AXIs Object Model)的新核心 XML 处理模型,利用新的XML解析器提供的灵活性按需构造对象模型. ②支持不同的消息交换模式.目前Axis2支持三种模式:In-Only.Robust-In和In-Out.In-Only消息交换模式只有SOAP请求,而不需要应答:Robust-In消息交换模式发送SOAP请求,

eclipse下的webservice开发

关于eclipse下的webservice开发,有非常多的教程,这里只记下学习过程中的弯路: 1.无论是CXF模式还是AXIS模式,在出现start server之后,点击next报错:"selection must be wsdl",原因其实非常简单,就是启动server时有异常,没有可以访问的wsdl.需要将异常解决了之后就行. 2.使用CXF模式时,CXF的版本要与eclipse中的一致,eclipse mars.1下要求CXF2.x,此时官网的已经到3了,使用老版本. 3.使用

基于Myeclipse+Axis2的WebService开发实录

最近开始学习了下在Myeclipse开发工具下基于WebSerivce的开发,下面将相关相关关键信息予以记录 Myeclipse的安装,本文以Myeclipse2014-blue为开发环境,相关配置执行完善 从http://archive.apache.org/dist/ws/axis2/tools/下载Axis2包,下载 axis2-eclipse-codegen-wizard.zip,下载axis2-eclipse-service-archiver-wizard.zip 从http://ax

VS2008中C#开发webservice简单实例

1.创建工程 文件-> 新建->网站 如下图. 工程建好后,会自动添加如下代码: 1 using System; 2 using System.Linq; 3 using System.Web; 4 using System.Web.Services; 5 using System.Web.Services.Protocols; 6 using System.Xml.Linq; 7 8 [WebService(Namespace = "http://tempuri.org/"

axis2+spring开发webservice服务器端

需求:开发VAC与SP间订购通知接口服务器端(SP端),给定VacSyncService_SPClient.wsdl文件 首先,官网下载axis2-1.6.2-bin.zip和axis2-1.6.2-war.zipaxis2-1.6.2-bin.zip包含axis2的jar包,工具和例子axis2-1.6.2-war.zip包含了axis2的web应用,发布web服务时,将自己的程序以特定文件结构发布到axis2的web应用的service目录中 1.根据wsdl生成服务器端代码解压axis2-

Webservice开发概念

一.Web Service基本概念 Web Service由两部分组成 SOAP--Web Service之间的基本通信协议. WSDL--Web Service描述语言,它定义了Web Service做什么,怎么做和查询的信息. 二.什么是 Webservice? Web 是使应用程序可以与平台和编程语言无关的方式进行相互通信的一项技术.Web 服务是一个软件接口,它描述了一组可以在网络上通过标准化的 XML 消息传递访问的操作.它使用基于 XML 语言的协议来描述要执行的操作或者要与另一个