博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
axis2 对webservice进行接口的调用
阅读量:5901 次
发布时间:2019-06-19

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

axis2 就不说太多了,我也不太懂,在apache上自己下载axis的jar包,导入到项目中,

下面就是实现代码了:

import java.util.Iterator;

import javax.xml.namespace.QName;

import org.apache.axiom.om.OMAbstractFactory;

import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axis2.AxisFault;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.client.ServiceClient;

import com.alibaba.fastjson.JSON;

import com.alibaba.fastjson.JSONObject;

public class Demo {

private static void axis2WebService() {
try {
String soapBindingAddress = "http://192.168.0.55:9080/itsm/schemas/ProductServices?wsdl";
ServiceClient sender = new ServiceClient();
EndpointReference endpointReference = new EndpointReference(soapBindingAddress);
Options options = new Options();
options.setTo(endpointReference);
sender.setOptions(options);
OMFactory fac = OMAbstractFactory.getOMFactory();
// 这个和qname差不多,设置命名空间
OMNamespace omNs = fac.createOMNamespace("http://www.chinawiserv.com/onecenter",""); //这个是namespace的str
OMElement data = fac.createOMElement("getProducts", omNs);   //getProducts是方法
// 对应参数的节点
String[] strs = new String[] { "arg0" };
// 参数值 ,以json的格式进行传递
String[] val = new String[] { "{\"userId\":\"1\"}"};
for (int i = 0; i < strs.length; i++) {
QName qname=new QName(strs[i]);
OMElement inner = fac.createOMElement(qname);
inner.setText(val[i]);
data.addChild(inner);
}
System.out.println(data);
// 发送数据,返回结果
OMElement result = sender.sendReceive(data);
System.out.println(result.toString());
//下面是返回的数据解析,返回的是json格式的数据,对string进行jsonobject
Iterator iterator = result.getChildElements();

OMElement result1 = null;

while (iterator.hasNext()) {
result1 = (OMElement) iterator.next();
System.out.println(result1.getText());
}
String re = result1.getText();
JSONObject json_test = JSON.parseObject(re);
System.out.println(json_test.getString("info"));
System.out.println(json_test.getString("result"));
} catch (AxisFault ex) {
ex.printStackTrace();
}
}
public static void main(String[] args) {
axis2WebService();
}
}

转载于:https://www.cnblogs.com/liuyun-10/p/7600071.html

你可能感兴趣的文章
C#中的析构函数
查看>>
Python基础—基础数据类型list(Day4)
查看>>
idea 编译级别的设置
查看>>
内置对象Array的原型对象中添加方法
查看>>
12行代码的相关节点
查看>>
PLSQL 中异常处理
查看>>
Android事件总线(一)EventBus3.0用法全解析
查看>>
6大设计原则
查看>>
hdu 1811 Rank of Tetris(并查集+拓扑排序)
查看>>
Github简介
查看>>
部署包含水晶报表Crystal Reports 的VS.NET2005应用程序[原创]
查看>>
存储过程—导出table数据为inser sqlt语句
查看>>
Windows 7下Maven3.0.3的安装
查看>>
CISCO2691的OSPF点对点密文测评测试
查看>>
POJ 1661 Help Jimmy(递推DP)
查看>>
Node.js 中文学习资料和教程导航
查看>>
查找(AVL平衡二叉树)
查看>>
Javascript函数调用的四种模式
查看>>
【python】标准库的大致认识
查看>>
用 Asterisk 搭建自己的免费 VoIP 服务器
查看>>