Unmarshalling Error: 意外的元素的问题的解决
Posted maysky-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unmarshalling Error: 意外的元素的问题的解决相关的知识,希望对你有一定的参考价值。
今天使用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: 意外的元素的问题的解决的主要内容,如果未能解决你的问题,请参考以下文章
Akka(34): Http:Unmarshalling,from Json
akka-http 错误:找不到参数 um 的隐式值:akka.http.scaladsl.unmarshalling.FromRequestUnmarshaller
CS: Marshalling and Unmarshalling, Serialization and Unserialization
如何修复 Android 中偏移 YYY 处的 Unmarshalling unknown type code XXX?