久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

eclipse+webservice開發(fā)實例

 館天下ccf 2014-11-25

1.參考文獻:

1.利用Java編寫簡單的WebService實例  http://nopainnogain./blog/791525

2.Axis2與Eclipse整合開發(fā)Web Service  http://tech./2009-05/1242968642120461.html

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

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

5.使用Eclipse+Axis2+Tomcat構(gòu)建Web Services應(yīng)用(實例講解篇)

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

2.1.系統(tǒng)功能: 

開發(fā)一個計算器服務(wù)CalculateService,這個服務(wù)包含加(plus),、減(minus),、乘(multiply)、除(divide)的操作,。

2.2.開發(fā)前準(zhǔn)備:

  1. 安裝Eclipse-jee,;
  2. 下載最新版本的Axis2,網(wǎng)址http://axis./axis2/java/core/download.cgi ,,選擇Standard Binary Distribution的zip包,,解壓縮得到的目錄名axis2-1.4.1,目錄內(nèi)的文件結(jié)構(gòu)如下:


2.3.開發(fā)前配置:

在Eclipse的菜單欄中,,Window --> Preferences --> Web Service --> Axis2 Perferences,在Axis2 runtime location中選擇Axis2解壓縮包的位置,,設(shè)置好后,,點"OK"即行。(如圖


2.4.開發(fā)Web Service:

(1)新建一個Java Project,,命名為"WebServiceTest1"
(2)新建一個class,,命名為"CalculateService",完整代碼如下:

  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),在出現(xiàn)的Web Services對象框,,在Service implementation中點擊"Browse",,進入Browse Classes對象框,查找到我們剛才寫的寫的CalculateService類,。(如下圖),。點擊"ok",則回到Web Service話框。

(5)在Web Service對話框中,,將Web Service type中的滑塊,,調(diào)到"start service“的位置,將Client type中的滑塊調(diào)到"Test client"的位置,。


(6)在Web Service type滑塊圖的右邊有個"Configuration",,點擊它下面的選項,進入Service Deployment Configuration對象框,,在這里選擇相應(yīng)的Server(我這里用Tomcat6.0)和Web Service runtime(選擇Apache Axis2),,如下圖:


(7)點OK后,則返回到Web Service對話框,,同理,,Client type中的滑塊右邊也有"Configuration",也要進行相應(yīng)的置,,步驟同上,。完成后,Next --> next即行,。進入到Axis2 Web Service Java Bean Configuration,,我們選擇Generate a default services.xml,如下圖所示:

(8)到了Server startup對話框,,有個按鍵"start server"(如下圖),,點擊它,則可啟動Tomcat服務(wù)器了,。

(9)等啟完后,,點擊"next -- > next",一切默認即行,,最后,,點擊完成,。最后,出現(xiàn)如下界面:(Web Service Explorer),,我們在這里便可測試我們的Web服務(wù),。(使用瀏覽器打開的話使用如下地址:http://127.0.0.1:19189/wse/wsexplorer/wsexplorer.jsp?org.eclipse.wst.ws.explorer=3)。如下圖所示:


注:在瀏覽器中打開Web Service Explorer(有時候在eclipse中關(guān)閉了webservice explorer,,可以用這種方法打開)

首先登錄地址:http://127.0.0.1:19189/wse/wsexplorer/wsexplorer.jsp,。然后在網(wǎng)頁右上角選擇Web Service Exoplorer標(biāo)簽。然后輸入WSDL地址:http://localhost:8080/WebServiceTest1/services/CalculateService?wsdl ,。這個wsdl地址就是我們剛才發(fā)布服務(wù)的那個wsdl,。點擊go,如下圖所示:


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


(10)測試比較簡單,,例如,,我們選擇一個"plus"的Operation(必須是CalculateServiceSoap11Binding),出現(xiàn)下圖,,在x的輸入框中輸入1,,在y的輸入框中輸入2,點擊"go",便會在status欄中顯示結(jié)果3.0,。其他方法的測試也類似,。結(jié)果如上圖所示。

2.5.CalculateService客戶端調(diào)用程序

前面我們已經(jīng)定義好了加減乘除的方法并將這些方法發(fā)布為服務(wù),,那么現(xiàn)在要做的就是調(diào)用這些服務(wù)即可,。客戶端調(diào)用程序如下代碼所示:CalculateServiceTest.java
  1. package edu.sjtu.webservice.test;  
  2.   
  3. import javax.xml.namespace.QName;  
  4. import org.apache.axis2.AxisFault;  
  5. import org.apache.axis2.addressing.EndpointReference;  
  6. import org.apache.axis2.client.Options;  
  7. import org.apache.axis2.rpc.client.RPCServiceClient;  
  8.   
  9. public class CalculateServiceTest {  
  10.   
  11.     /** 
  12.      * @param args 
  13.      * @throws AxisFault 
  14.      */  
  15.     public static void main(String[] args) throws AxisFault {  
  16.         // TODO Auto-generated method stub  
  17.   
  18.         // 使用RPC方式調(diào)用WebService  
  19.         RPCServiceClient serviceClient = new RPCServiceClient();  
  20.         Options options = serviceClient.getOptions();  
  21.         // 指定調(diào)用WebService的URL  
  22.         EndpointReference targetEPR = new EndpointReference(  
  23.                 "http://localhost:8080/WebServiceTest1/services/CalculateService");  
  24.         options.setTo(targetEPR);  
  25.   
  26.         // 指定要調(diào)用的計算機器中的方法及WSDL文件的命名空間:edu.sjtu.webservice,。  
  27.         QName opAddEntry = new QName("http://webservice.","plus");//加法  
  28.         QName opAddEntryminus = new QName("http://webservice.","minus");//減法  
  29.         QName opAddEntrymultiply = new QName("http://webservice.","multiply");//乘法  
  30.         QName opAddEntrydivide = new QName("http://webservice.","divide");//除法  
  31.         // 指定plus方法的參數(shù)值為兩個,,分別是加數(shù)和被加數(shù)  
  32.         Object[] opAddEntryArgs = new Object[] { 1,2 };  
  33.         // 指定plus方法返回值的數(shù)據(jù)類型的Class對象  
  34.         Class[] classes = new Class[] { float.class };  
  35.         // 調(diào)用plus方法并輸出該方法的返回值  
  36.         System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);  
  37.         System.out.println(serviceClient.invokeBlocking(opAddEntryminus,opAddEntryArgs, classes)[0]);  
  38.         System.out.println(serviceClient.invokeBlocking(opAddEntrymultiply,opAddEntryArgs, classes)[0]);  
  39.         System.out.println(serviceClient.invokeBlocking(opAddEntrydivide,opAddEntryArgs, classes)[0]);  
  40.   
  41.     }  
  42. }  
運行結(jié)果:
  1. 3.0  
  2. -1.0  
  3. 2.0  
  4. 0.5  

3.實例2.HelloService

(1)首先定義服務(wù)方法,代碼如下所示:

  1. package edu.sjtu.webservice;  
  2.   
  3. public class HelloService {  
  4.     public String sayHelloNew() {  
  5.         return "hello";  
  6.     }  
  7.   
  8.     public String sayHelloToPersonNew(String name) {  
  9.         if (name == null) {  
  10.             name = "nobody";  
  11.         }  
  12.         return "hello," + name;  
  13.     }  
  14.   
  15.     public void updateData(String data) {  
  16.         System.out.println(data + " 已更新,。");  
  17.     }  
  18. }  
(2)參考實例1將這個方法發(fā)布為服務(wù)。

(3)編寫客戶端代碼調(diào)用WebService(主要參考[5])

本文例子與其他例子最大的不同就在這里,,其他例子一般需要根據(jù)剛才的服務(wù)wsdl生成客戶端stub,,然后通過stub來調(diào)用服務(wù),這種方式顯得比較單一,,客戶端必須需要stub存根才能夠訪問服務(wù),,很不方面。本例子的客戶端不采用stub方式,,而是一種實現(xiàn)通用的調(diào)用方式,,不需要任何客戶端存根即可訪問服務(wù)。只需要指定對于的web servce地址,、操作名,、參數(shù)和函數(shù)返回類型即可,。代碼如下所示:

HelloServiceTest2.java

  1. package edu.sjtu.webservice.test;  
  2.   
  3. import javax.xml.namespace.QName;  
  4.   
  5. import org.apache.axis2.AxisFault;  
  6. import org.apache.axis2.addressing.EndpointReference;  
  7. import org.apache.axis2.client.Options;  
  8. import org.apache.axis2.rpc.client.RPCServiceClient;  
  9.   
  10. public class HelloServiceTest2 {  
  11.     private RPCServiceClient serviceClient;  
  12.     private Options options;  
  13.     private EndpointReference targetEPR;  
  14.   
  15.     public HelloServiceTest2(String endpoint) throws AxisFault {  
  16.         serviceClient = new RPCServiceClient();  
  17.         options = serviceClient.getOptions();  
  18.         targetEPR = new EndpointReference(endpoint);  
  19.         options.setTo(targetEPR);  
  20.     }  
  21.   
  22.     public Object[] invokeOp(String targetNamespace, String opName,  
  23.             Object[] opArgs, Class<?>[] opReturnType) throws AxisFault,  
  24.             ClassNotFoundException {  
  25.         // 設(shè)定操作的名稱  
  26.         QName opQName = new QName(targetNamespace, opName);  
  27.         // 設(shè)定返回值  
  28.         // Class<?>[] opReturn = new Class[] { opReturnType };  
  29.         // 操作需要傳入的參數(shù)已經(jīng)在參數(shù)中給定,這里直接傳入方法中調(diào)用  
  30.         return serviceClient.invokeBlocking(opQName, opArgs, opReturnType);  
  31.     }  
  32.   
  33.     /** 
  34.      * @param args 
  35.      * @throws AxisFault 
  36.      * @throws ClassNotFoundException 
  37.      */  
  38.     public static void main(String[] args) throws AxisFault,  
  39.             ClassNotFoundException {  
  40.         // TODO Auto-generated method stub  
  41.         final String endPointReference = "http://localhost:8080/WebServiceTest1/services/HelloService";  
  42.         final String targetNamespace = "http://webservice.";  
  43.         HelloServiceTest2 client = new HelloServiceTest2(endPointReference);  
  44.   
  45.         String opName = "sayHelloToPersonNew";  
  46.         Object[] opArgs = new Object[] { "My Friends" };  
  47.         Class<?>[] opReturnType = new Class[] { String[].class };  
  48.   
  49.         Object[] response = client.invokeOp(targetNamespace, opName, opArgs,  
  50.                 opReturnType);  
  51.         System.out.println(((String[]) response[0])[0]);  
  52.     }  
  53.   
  54. }  
運行該程序,,點擊Run As->Java application,,可以看到控制臺端口的輸出是:Hello, My Friends,表明客戶端調(diào)用成功,。該例子最大的不同和優(yōu)勢表現(xiàn)在客戶端的調(diào)用方式,,或者說是發(fā)起服務(wù)調(diào)用的方式,雖然比起客戶端stub存根的方式,,代碼稍多,,但是這種方式統(tǒng)一,不需要生產(chǎn)stub存根代碼,,解決了客戶端有很多類的問題,。如果讀者對這些代碼進一步封裝,我想調(diào)用方式很簡單,,只需要傳遞相關(guān)參數(shù),,這更好地說明了服務(wù)調(diào)用的優(yōu)勢。而且這種方式更加簡單明了,,一看便知具體含義,。而不需要弄得stub類的一些機制。

(4)改寫客戶端調(diào)用服務(wù)的代碼

(3)中提到的客戶端應(yīng)用代碼寫的略微有些繁雜,,下面將上面的客戶端調(diào)用service程序進行改寫,,簡潔了許多。代碼如下:

HelloServiceTest.java

  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.   
  7. public class HelloServiceTest {  
  8.     public static void main(String args[]) throws AxisFault {  
  9.         // 使用RPC方式調(diào)用WebService  
  10.         RPCServiceClient serviceClient = new RPCServiceClient();  
  11.         Options options = serviceClient.getOptions();  
  12.         // 指定調(diào)用WebService的URL  
  13.         EndpointReference targetEPR = new EndpointReference("http://localhost:8080/WebServiceTest1/services/HelloService");  
  14.         options.setTo(targetEPR);  
  15.           
  16.         // 指定要調(diào)用的sayHelloToPerson方法及WSDL文件的命名空間  
  17.         QName opAddEntry = new QName("http://webservice.","sayHelloToPersonNew");  
  18.         // 指定sayHelloToPerson方法的參數(shù)值  
  19.         Object[] opAddEntryArgs = new Object[] { "xuwei" };  
  20.         // 指定sayHelloToPerson方法返回值的數(shù)據(jù)類型的Class對象  
  21.         Class[] classes = new Class[] { String.class };  
  22.         // 調(diào)用sayHelloToPerson方法并輸出該方法的返回值  
  23.         System.out.println(serviceClient.invokeBlocking(opAddEntry,opAddEntryArgs, classes)[0]);  
  24.     }  
  25. }  









    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多