Eclipse+Webservice简单开发实例
1.实例1(主要看到[2])
1.1.系统功能:
开发一个计算器服务calculateservice,这个服务包含加(plus)、减(minus)、乘(multiply)、除(divide)的操作。
1.2.开发前准备:
安装eclipse-jee;
下载最新版本的axis2,网址http://axis.apache.org/axis2/java/core/download.cgi ,选择standard binary distribution的zip包,解压缩得到的目录名axis2-1.4.1,目录内的文件结构如下:
1.3.开发前配置:
在eclipse的菜单栏中,window --> preferences --> web service --> axis2 perferences,在axis2 runtime location中选择axis2解压缩包的位置,设置好后,点"ok"即行。(如图)
1.4.开发web service:
(1)新建一个java project,命名为"webservicetest1"
(2)新建一个class,命名为"calculateservice",完整代码如下:
package edu.sjtu.webservice; /** * 计算器运算 * @author rongxinhua */ public class calculateservice { //加法 public float plus(float x, float y) { return x + y; } //减法 public float minus(float x, float y) { return x - y; } //乘法 public float multiply(float x, float y) { return x * y; } //除法 public float divide(float x, float y) { if(y!=0) { return x / y; } else return -1; } }
(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。其他方法的测试也类似。结果如上图所示。
1.5.calculateservice客户端调用程序
前面我们已经定义好了加减乘除的方法并将这些方法发布为服务,那么现在要做的就是调用这些服务即可。客户端调用程序如下代码所示:calculateservicetest.java
package edu.sjtu.webservice.test; 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/webservicetest1/services/calculateservice"); options.setto(targetepr); // 指定要调用的计算机器中的方法及wsdl文件的命名空间:edu.sjtu.webservice。 qname opaddentry = new qname("http://webservice.sjtu.edu","plus");//加法 qname opaddentryminus = new qname("http://webservice.sjtu.edu","minus");//减法 qname opaddentrymultiply = new qname("http://webservice.sjtu.edu","multiply");//乘法 qname opaddentrydivide = new qname("http://webservice.sjtu.edu","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]); } }
运行结果:
3.0
-1.0
2.0
0.5
2.实例
2.helloservice
(1)首先定义服务方法,代码如下所示:
package edu.sjtu.webservice; public class helloservice { public string sayhellonew() { return "hello"; } public string sayhellotopersonnew(string name) { if (name == null) { name = "nobody"; } return "hello," + name; } public void updatedata(string data) { system.out.println(data + " 已更新。"); } }
(2)参考实例1将这个方法发布为服务。
(3)编写客户端代码调用webservice(主要参考[5])
本文例子与其他例子最大的不同就在这里,其他例子一般需要根据刚才的服务wsdl生成客户端stub,然后通过stub来调用服务,这种方式显得比较单一,客户端必须需要stub存根才能够访问服务,很不方面。本例子的客户端不采用stub方式,而是一种实现通用的调用方式,不需要任何客户端存根即可访问服务。只需要指定对于的web servce地址、操作名、参数和函数返回类型即可。代码如下所示:
helloservicetest2.java package edu.sjtu.webservice.test; 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 helloservicetest2 { private rpcserviceclient serviceclient; private options options; private endpointreference targetepr; public helloservicetest2(string endpoint) throws axisfault { serviceclient = new rpcserviceclient(); options = serviceclient.getoptions(); targetepr = new endpointreference(endpoint); options.setto(targetepr); } public object[] invokeop(string targetnamespace, string opname, object[] opargs, class<?>[] opreturntype) throws axisfault, classnotfoundexception { // 设定操作的名称 qname opqname = new qname(targetnamespace, opname); // 设定返回值 // class<?>[] opreturn = new class[] { opreturntype }; // 操作需要传入的参数已经在参数中给定,这里直接传入方法中调用 return serviceclient.invokeblocking(opqname, opargs, opreturntype); } /** * @param args * @throws axisfault * @throws classnotfoundexception */ public static void main(string[] args) throws axisfault, classnotfoundexception { // todo auto-generated method stub final string endpointreference = "http://localhost:8080/webservicetest1/services/helloservice"; final string targetnamespace = "http://webservice.sjtu.edu"; helloservicetest2 client = new helloservicetest2(endpointreference); string opname = "sayhellotopersonnew"; object[] opargs = new object[] { "my friends" }; class<?>[] opreturntype = new class[] { string[].class }; object[] response = client.invokeop(targetnamespace, opname, opargs, opreturntype); system.out.println(((string[]) response[0])[0]); } }
运行该程序,点击run as->java application,可以看到控制台端口的输出是:hello, my friends,表明客户端调用成功。该例子最大的不同和优势表现在客户端的调用方式,或者说是发起服务调用的方式,虽然比起客户端stub存根的方式,代码稍多,但是这种方式统一,不需要生产stub存根代码,解决了客户端有很多类的问题。如果读者对这些代码进一步封装,我想调用方式很简单,只需要传递相关参数,这更好地说明了服务调用的优势。而且这种方式更加简单明了,一看便知具体含义。而不需要弄得stub类的一些机制。
(4)改写客户端调用服务的代码
(3)中提到的客户端应用代码写的略微有些繁杂,下面将上面的客户端调用service程序进行改写,简洁了许多。代码如下:
helloservicetest.java 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 helloservicetest { public static void main(string args[]) throws axisfault { // 使用rpc方式调用webservice rpcserviceclient serviceclient = new rpcserviceclient(); options options = serviceclient.getoptions(); // 指定调用webservice的url endpointreference targetepr = new endpointreference("http://localhost:8080/webservicetest1/services/helloservice"); options.setto(targetepr); // 指定要调用的sayhellotoperson方法及wsdl文件的命名空间 qname opaddentry = new qname("http://webservice.sjtu.edu","sayhellotopersonnew"); // 指定sayhellotoperson方法的参数值 object[] opaddentryargs = new object[] { "xuwei" }; // 指定sayhellotoperson方法返回值的数据类型的class对象 class[] classes = new class[] { string.class }; // 调用sayhellotoperson方法并输出该方法的返回值 system.out.println(serviceclient.invokeblocking(opaddentry,opaddentryargs, classes)[0]); } }
通过以上内容给大家介绍了eclipse+webservice简单开发实例,希望对大家有所帮助!