0

我的架构是:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"     attributeFormDefault="unqualified">
<xs:element name="Details">
<xs:complexType>
  <xs:sequence>
   <xs:element name="create_Date" type="xs:date" maxOccurs="1" />
  </xs:sequence>
</xs:complexType>

XML 文档:

<Details xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<create_date>2009-06-04</create_date>
</Details>

我收到异常,因为 XML 文档有错误:true cvc-complex-type.2.4.a:发现以元素“create_date”开头的无效内容。应为“{create_Date}”之一。

请问有人可以帮助我吗?

4

1 回答 1

3

XML 区分大小写。

你需要create_Date像你定义的那样使用它。

于 2012-11-12T06:12:41.943 回答