Axis调用webservice接口例子
Posted lz603385786
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Axis调用webservice接口例子相关的知识,希望对你有一定的参考价值。
public String invokeByAxis(String requestParam,String method) {
String result = "";
Service service = new Service();
String endPoint = "http://******:8088/bsbiam/services/SoapTreasury4A?wsdl";
try {
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endPoint);
call.addParameter("reqMsg", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
call.setOperationName(new QName(endPoint,method));
result = (String) call.invoke(new Object[]{requestParam});
System.out.println("返回值:" + result);
} catch (Exception e) {
System.out.print("WebService请求异常!! ");
e.printStackTrace();
}
return result;
}
备注:
requestParam: xml请求参数
method:请求的方法
reqMsg:方法中的参数
以上是关于Axis调用webservice接口例子的主要内容,如果未能解决你的问题,请参考以下文章
java axis调用webservice,接口方法中的数组型参数应该怎么传参
基于Axis1.4的webservice接口开发(接口调用)