2

我有这个XML文件

<bookstore>  
  <test>
    <test2/>
  </test>
</bookstore>

和这个XSD架构

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xsd:element name="bookstore" type="bookstoreType"/>     
  <xsd:complexType name="bookstoreType">
    <xsd:sequence maxOccurs="unbounded">  
      <xsd:element name="test" type="xsd:anyType" />
    </xsd:sequence>                                       
  </xsd:complexType>
</xsd:schema>

我打算从 C# 代码验证 xml 文件。有一种验证 XML 文件的方法:

    // validate xml
    private void ValidateXml()
    {
        _isValid = true;

        // Get namespace from xml file
        var defaultNamespace = XDocument.Load(XmlFileName).Root.GetDefaultNamespace().NamespaceName;

        // Set the validation settings.
        XmlReaderSettings settings = new XmlReaderSettings();
        settings.ValidationType = ValidationType.Schema;
        settings.ValidationFlags |= XmlSchemaValidationFlags.ReportValidationWarnings;
        settings.Schemas.Add(defaultNamespace, XsdFileName);
        settings.ValidationEventHandler += OnValidationEventHandler;

        // Create the XmlReader object.
        using(XmlReader reader = XmlReader.Create(XmlFileName, settings))
        {
            // Parse the file. 
            while (reader.Read()) ;    
        }
    }

    private void OnValidationEventHandler(object s, ValidationEventArgs e)
    {
        if (_isValid) _isValid = false;

        if (e.Severity == XmlSeverityType.Warning)
            MessageBox.Show("Warning: " + e.Message);
        else
            MessageBox.Show("Validation Error: " + e.Message);
    }

我知道,这个 XML 文件是有效的。但是我的代码重新出现了这个错误:

Validation Error: Could not find schema information for the element 'test2'

我的错误在哪里?

谢谢!!!

4

1 回答 1

1

更新:我假设您的代码与您列出的错误相匹配(我已在 .NET 3.5SP1 上尝试过您的代码,但无法重现您的行为)。下面的解决方法应该肯定有效(您得到的错误与 process contents 子句一致,strict而不是lax)。

替换<xsd:element name="test" type="xsd:anyType" />为允许 xsd:any 的复杂内容,如下所示:

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 
    <xsd:element name="bookstore" type="bookstoreType"/> 
    <xsd:complexType name="bookstoreType"> 
        <xsd:sequence maxOccurs="unbounded"> 
            <xsd:element name="test">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:any minOccurs="0" maxOccurs="unbounded" processContents="lax"/>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
        </xsd:sequence> 
    </xsd:complexType> 
</xsd:schema> 

有“松懈”仍然会产生信息;如果您希望该消息消失,您可以使用“跳过”。无论如何,skiplaxxsd:any 中可以为您提供所需的东西。

于 2012-05-14T16:53:11.893 回答