您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Java如何調用webservice的.asmx接口,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
接觸到一個.asmx結尾的webservice接口,為了增加記憶決定記錄下來。
已.asmx結尾的接口
例:接口地址:http://IP地址/xxx/service/xxx/xxxx.asmx 方法名:test 參數類型:string
代碼如下(示例):
controller類:
String s = clientUtil.test("http://IP地址/xxx/service/xxx/xxxx.asmx", "test","test");
調用類:
public static String test(String Url, String methodName, String str) throws Exception { String ref = null; // webService鏈接地址 String url = Url; //獲取域名地址,server定義的 String soapaction = "http://tempuri.org/"; Service service = new Service(); try { Call call = (Call) service.createCall(); call.setTargetEndpointAddress(url); // 設置要調用哪個方法 call.setOperationName(new QName(soapaction, methodName)); // 設置要傳遞的參數名 call.addParameter(new QName(soapaction,"str"),org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN); // 提供標準類型 有addParameter就必須有setReturnType call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING); call.setUseSOAPAction(true); call.setSOAPActionURI(soapaction + methodName); // 調用方法并傳遞參數 ref = (String) call.invoke(new Object[]{str}); return ref; } catch (Exception e) { e.printStackTrace(); } return ref; }
如下:
<dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.axis</groupId> <artifactId>axis</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>axis</groupId> <artifactId>axis-jaxrpc</artifactId> <version>1.4</version> </dependency>
關于Java如何調用webservice的.asmx接口就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。