java webservice开发实例_eclipse+webservice开发实例 | 学步园

此文有几处错误需要更正,

一个是要建立web项目

第二 小心路径要引用对,service的路径,要有选择方法的步骤,都没有的话肯定错了

1.参考文献:

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

2.1.系统功能:

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

2.2.开发前准备:

安装Eclipse-jee;

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

0_13232411165Rcr.gif

2.3.开发前配置:

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

0_1323241136MxXU.gif

2.4.开发Web Service:

(1)新建一个Java Project,命名为"WebServiceTest1"

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

packageedu.sjtu.webservice;

/**

* 计算器运算

* @author rongxinhua

*/

publicclassCalculateService {

//加法

publicfloatplus(floatx,floaty) {

returnx + y;

}

//减法

publicfloatminus(floatx,floaty) {

returnx - y;

}

//乘法

publicfloatmultiply(floatx,floaty) {

returnx * y;

}

//除法

publicfloatdivide(floatx,floaty) {

if(y!=0)

{

returnx / y;

}

else

return-1;

}

}

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

0_1323241206Zczu.gif

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

0_132324123963SM.gif

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

0_13232412760xik.gif

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

0_1323241360K8zQ.gif

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

0_1323241311Dagm.gif

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

0_1323241394yJeE.gif

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

0_1323241422e5l6.gif

注:在浏览器中打开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,如下图所示:

0_1323259749YAwp.gif

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

0_1323259847IC7K.gif

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

2.5.CalculateService客户端调用程序

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

packageedu.sjtu.webservice.test;

importjavax.xml.namespace.QName;

importorg.apache.axis2.AxisFault;

importorg.apache.axis2.addressing.EndpointReference;

importorg.apache.axis2.client.Options;

importorg.apache.axis2.rpc.client.RPCServiceClient;

publicclassCalculateServiceTest {

/**

* @param args

* @throws AxisFault

*/

publicstaticvoidmain(String[] args)throwsAxisFault {

// TODO Auto-generated method stub

// 使用RPC方式调用WebService

RPCServiceClient serviceClient = newRPCServiceClient();

Options options = serviceClient.getOptions();

// 指定调用WebService的URL

EndpointReference targetEPR = newEndpointReference(

"http://localhost:8080/WebServiceTest1/services/CalculateService");

options.setTo(targetEPR);

// 指定要调用的计算机器中的方法及WSDL文件的命名空间:edu.sjtu.webservice。

QName opAddEntry = newQName("http://webservice.sjtu.edu","plus");//加法

QName opAddEntryminus = newQName("http://webservice.sjtu.edu","minus");//减法

QName opAddEntrymultiply = newQName("http://webservice.sjtu.edu","multiply");//乘法

QName opAddEntrydivide = newQName("http://webservice.sjtu.edu","divide");//除法

// 指定plus方法的参数值为两个,分别是加数和被加数

Object[] opAddEntryArgs = newObject[] {1,2};

// 指定plus方法返回值的数据类型的Class对象

Class[] classes = newClass[] {float.class};

// 调用plus方法并输出该方法的返回值

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

System.out.println(serviceClient.invokeBlocking(opAddEntryminus,opAddEntryArgs, classes)[0]);

System.out.println(serviceClient.invokeBlocking(opAddEntrymultiply,opAddEntryArgs, classes)[0]);

System.out.println(serviceClient.invokeBlocking(opAddEntrydivide,opAddEntryArgs, classes)[0]);

}

}

运行结果:

log4j:WARN No appenders could be found for logger (org.apache.axis2.context.AbstractContext).

log4j:WARN Please initialize the log4j system properly.

3.0

-1.0

2.0

0.5

我的实际测试类:

package com.myservice.client;

import javax.xml.namespace.QName;

import org.apache.axis2.AxisFault;

import org.apache.axis2.addressing.EndpointReference;

import org.apache.axis2.client.Options;

import org.apache.axis2.rpc.client.RPCServiceClient;

public class CalculateServiceTest {

/**

* @param args

* @throws AxisFault

*/

public static void main(String[] args) throws AxisFault {

// TODO Auto-generated method stub

// 使用RPC方式调用WebService

RPCServiceClient serviceClient = new RPCServiceClient();

Options options = serviceClient.getOptions();

// 指定调用WebService的URL

EndpointReference targetEPR = new EndpointReference(

// "http://localhost:8080/design/services/CalculateService");

// "http://191.168.2.34:8080/design/services/CalculateService");

"http://127.0.0.1:8080/webservice/services/CalculateService");

options.setTo(targetEPR);

// 指定要调用的计算机器中的方法及WSDL文件的命名空间:com.myservice.service

QName opAddEntry = new QName("http://service.myservice.com","plus");//加法

QName opAddEntryminus = new QName("http://service.myservice.com","minus");//减法

QName opAddEntrymultiply = new QName("http://service.myservice.com","multiply");//乘法

QName opAddEntrydivide = new QName("http://service.myservice.com","divide");//除法

// 指定plus方法的参数值为两个,分别是加数和被加数

Object[] opAddEntryArgs = new Object[] { 1,2 };

// 指定plus方法返回值的数据类型的Class对象

Class[] classes = new Class[] { float.class };

// 调用plus方法并输出该方法的返回值

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

System.out.println(serviceClient.invokeBlocking(opAddEntryminus,opAddEntryArgs, classes)[0]);

System.out.println(serviceClient.invokeBlocking(opAddEntrymultiply,opAddEntryArgs, classes)[0]);

System.out.println(serviceClient.invokeBlocking(opAddEntrydivide,opAddEntryArgs, classes)[0]);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值