无效的XDocument正在验证

时间:2016-05-18 15:58:30

标签: c# xml xsd-validation xml-validation

我有以下xml架构

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attributeFormDefault="unqualified" elementFormDefault="qualified" 
           targetNamespace="http://www.MySchema.net" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="RootElement">
    <xs:complexType>
      <xs:simpleContent>
        <xs:extension base="xs:string">
          <xs:attribute name="name" type="xs:string" />
        </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
  </xs:element>
</xs:schema>

以及xml的以上模式验证:

案例1 :(架构例外)

<?xml version="1.0" encoding="utf-8" ?> <RootElement11 name="Configuration" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.MySchema.net Root" xmlns="http://www.MySchema.net">
    </RootElement11>

案例2 :(无例外)

<?xml version="1.0" encoding="utf-8" ?>
<RootElement11 name="Configuration" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.YourSchema.net Root" xmlns="http://www.YourSchema.net">
</RootElement11>

案例3 :(无例外)

<RootElement11 name="Configuration">
</RootElement11>

对于案例1,我得到一个预期的异常,即“未声明'Bootply example'元素。”,但案例2和案例3无例外验证。

我想知道当使用XDocument.Validate方法验证带有false命名空间或没有命名空间的xml文件时是否有可能抛出异常。

我发现一些http://www.MySchema.net:RootElement1使用XmlReader设置来抛出这些类型的异常。我看到两个可能性1)从XDocument返回XmlReader,2)使用XmlReader验证并使用XDocument进行LINQ查询。 但是没有XmlReader就可以实现这一目标。

1 个答案:

答案 0 :(得分:1)

问题是案例2和案例3都适用于模式 - 您的模式对名称空间中除targetNamespace之外的元素没有任何意见。

XmlReader可以为此返回警告,但XDocument没有任何重载可以执行此操作。 linked question中的代码段使用了XmlReader wrapper around XDocument,我无法理解为什么你这样做会有任何问题。