我的架构是:
<?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 Document有错误:true cvc-complex-type.2.4.a:找到以元素'create_date'开头的无效内容。预计会有一个'{create_Date}'。
请有人帮助我吗?
答案 0 :(得分:3)
XML区分大小写。
您需要像定义它一样使用create_Date
。