1

我正在使用 jaxb 在 mule 中进行 xml 到对象转换,但是,每当我使用 xml 标记时,我都会收到此错误 - org.xml.sax.SAXParseException - 处理指令目标匹配“[xX][mM][lL]”不被允许。

以下是我的输入信息-

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:test="http://test.standalone.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <test:getResultString>
         <!--Optional:-->
         <inputXml>
                  <![CDATA[<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
         <autoBean>
            <autoID>1</autoID>
            <country>sdf</country>
            <model>sdf</model>
            <year>sf</year>
        </autoBean>
         ]]>
         </inputXml>
      </test:getResultString>
   </soapenv:Body>
</soapenv:Envelope>

如果我删除“”转换工作正常,但对我来说使用 .

4

1 回答 1

0

我通过删除 wsdl 元素和 cdata 之间的空格解决了这个问题,如下所示,将其与上述请求消息进行比较

 <inputXml><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<autoBean>
    <autoID>4</autoID>
    <country>sdf</country>
    <model>sdf</model>
    <year>2013-01-01</year>
</autoBean>
         ]]>
于 2013-11-13T11:32:54.997 回答