0

我在由 WSDL 文件形成的处理程序中发送一个查询,如果我们无权访问数据库,它只是执行查询。处理程序只有一个 xml 标签,我们必须在其中编写要执行的查询,然后它将查询数据库并以 xml 格式返回响应。我正在执行一个简单的选择查询来获取一行的详细信息。但在回复中,我得到了以下异常

org.xml.sax.SAXParseException:The content of elements must consist of well-formed character data or markup.
at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)

proper return response XML should be
<row>    
 <Vendor>
      <Number>
         <CountryCode>1</CountryCode>
         <AreaCode>23</AreaCode>
         <SubNumber>456</SubNumber>
      </Number>
 </Vendor>
</row>

in this <SubNumber> tag is giving error,
i am not aware of value inside this tag in database.


i followed the stack trace and piece of code which is throwing the exception is:
   DOMParser parser = new DOMParser();    

谁能帮我解决这个例外?在哪里寻找?需要任何修改吗?我需要检查返回数据中的标签吗?是那些有效的,基本上 Child1 标记的设计方式是它在其中包含一个 XML,该 XML 将持续到表的一列中

4

1 回答 1

0

您的 XML无效

row-->Parent-->Child-->Child 1

XML 元素名称中不能有空格。您的 xml 元素名称Child 1有一个空格。

XML 元素名称必须遵循这些命名规则......

  • 名称可以包含字母、数字和其他字符
  • 名称不能以数字或标点符号开头
  • 名称不能以字母 xml(或 XML,或 Xml 等)开头
  • 名称不能包含空格
于 2013-09-11T07:02:04.990 回答