java調用webservice的.asmx接口的使用步驟

前言

接觸到一個.asmx結尾的webservice接口,為瞭增加記憶決定記錄下來。

一、接口類型

已.asmx結尾的接口

例:接口地址:http://IP地址/xxx/service/xxx/xxxx.asmx
	方法名:test
	參數類型:string 

二、使用步驟

1.訪問方式

代碼如下(示例):

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;
    }

2.導入的maven

如下:

<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>

參考:
[1]https://blog.csdn.net/qq_34302802/article/details/101197464

到此這篇關於java調用webservice的.asmx接口的文章就介紹到這瞭,更多相關java調用webservice接口內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: