博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java使用axis2调用.net webservice接口
阅读量:5304 次
发布时间:2019-06-14

本文共 1633 字,大约阅读时间需要 5 分钟。

/**

* 测试 异常笔数,退费处理
* @return
*/
public static String refundHandle() {
LogUtil.info("===============调用退费接口开始=================");
try {
PropertiesUtil propUtil = new PropertiesUtil("RefundInf.properties");
Properties pros = propUtil.getProperties();
String webServiceURL = pros.getProperty("webServiceURL");
String actionStr = pros.getProperty("actionStr");
String actionName = pros.getProperty("actionName");
RPCServiceClient ser = new RPCServiceClient ();
Options options = ser.getOptions();
// 指定调用WebService的URL
// EndpointReference targetEPR = new EndpointReference("http://172.16.28.100:8089/PayAPICall.asmx");
EndpointReference targetEPR = new EndpointReference(webServiceURL);
options.setTo(targetEPR);
//options.setAction("命名空间/WS 方法名");
// options.setAction("http://www.hwsoft.com/RefundCallService");
options.setAction(actionStr);
// 指定sfexpressService方法的参数值
Object[] opAddEntryArgs = new Object[] { "test"};
// 指定sfexpressService方法返回值的数据类型的Class对象
Class[] classes = new Class[] { String.class };
// 指定要调用的sfexpressService方法及WSDL文件的命名空间
// QName opAddEntry = new QName("http://www.hwsoft.com/RefundCallService/","RefundCallService");
QName opAddEntry = new QName(actionStr+"/",actionName);
// 调用sfexpressService方法并输出该方法的返回值
Object[] str = ser.invokeBlocking(opAddEntry, opAddEntryArgs, classes);
String sss = str[0].toString();
LogUtil.info("===============调用退费接口成功================="+sss);
return sss;
} catch (AxisFault e) {
// TODO Auto-generated catch block
e.printStackTrace();
LogUtil.info("===============调用退费接口出错================="+e.getMessage());
}
return null;
}

转载于:https://www.cnblogs.com/bzsz-quan/p/9380674.html

你可能感兴趣的文章
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
Extjs6 经典版 combo下拉框数据的使用及动态传参
查看>>
【NodeJS】http-server.cmd
查看>>
研磨JavaScript系列(五):奇妙的对象
查看>>
面试题2
查看>>
selenium+java iframe定位
查看>>
P2P综述
查看>>
第五章 如何使用Burp Target
查看>>
Sprint阶段测试评分总结
查看>>
sqlite3经常使用命令&语法
查看>>
linux下编译openjdk8
查看>>
【python】--迭代器生成器装饰器
查看>>
Pow(x, n)
查看>>
安卓当中的线程和每秒刷一次
查看>>
每日一库:Modernizr.js,es5-shim.js,es5-safe.js
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>