当前位置: 首页 > 知识库问答 >
问题:

JAXBException意外元素

秦博达
2023-03-14

我正在使用客户端web服务。1.发出WS请求并以XML格式获得响应。2.使用客户端WSDL,我生成了存根,因此使用同样的存根将XML解组到POJO。

<ns2:outputParams>

            <ns2:param>
               <ns2:name>response</ns2:name>
               </ns2:param>
                  <ns2:artifactDefinitionvalue><![CDATA[<elements xmlns="http://www.model.bll.nfv.activator.ov.hp.com">
 <artifactInstances>
    <artifactInstance>
      ... Some more tags 
     </artifactInstance>
 </artifactInstances>
</elements>]]>
</ns2:value>


     </ns2:outputParams>

看起来“element”标记是额外的,但我没有JAXB存根,它是在响应中添加的。

请帮忙解决。请帮帮忙。

共有1个答案

鲁鸿朗
2023-03-14

事实上,这是我的错误,我感到很难过。对于“element”确实有一个存根/类,所以我可以使用相同的存根/类来解组,因为这个“element”是“XmlRoolElement”。

谢谢

 类似资料: