标签: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