码迷,mamicode.com
首页 > 其他好文 > 详细

Unmarshalling Error: 意外的元素的问题的解决

时间:2019-12-06 11:40:24      阅读:570      评论:0      收藏:0      [点我收藏+]

标签:ace   hal   creat   字体加粗   through   style   erro   strong   原因   

今天使用axis2进行webservice调用出现上述问题,网络上没有找到解决的方案,后自己解决了,特此登记。

原因:传输参数格式有问题。

解决:将以下删除线的内容替换成字体加粗的内容。

OMFactory fac = OMAbstractFactory.getOMFactory();
OMNamespace omNs = fac.createOMNamespace("http://hr.evecom.net/", "");// 参数1(uri)=即为wsdl文档的targetNamespace;参数2(prefix)=可不填
OMElement method = fac.createOMElement("hiMyService", omNs);// 方法名

OMElement in0 = fac.createOMElement("content", omNs);// 方法参数

QName qname = new QName("content");
OMElement in0 = fac.createOMElement(qname);// 方法参数
in0.setText(xmlStr); // 参数值
method.addChild(in0); // 添加参数

Unmarshalling Error: 意外的元素的问题的解决

标签:ace   hal   creat   字体加粗   through   style   erro   strong   原因   

原文地址:https://www.cnblogs.com/maysky-l/p/11993916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!