VB.Net针对模式验证xml(奇怪的问题)

时间:2010-04-21 19:48:06

标签: xml vb.net schema xml-validation

我编写了一个小型XML验证器,它接收XML文件和XML架构,并根据该架构验证XML文件。除了XML文件之外,它的工作原理很好:

 <?xml version="1.0" encoding="utf-8"?>
<xc:program xmlns:xc="http:\\www.something.com\Schema\XC10" xc:version="4.0.22.0" >
    <xc:namespaceDecls>
        <xc:namespaceDecl xc:namespaceDeclURI="urn:swift:xsd:abc">
            <xc:namespaceDeclPrefix>n</xc:namespaceDeclPrefix>
        </xc:namespaceDecl>
    </xc:namespaceDecls>
</xc:program>

我尝试针对一堆不同的模式验证此XML文件。 无论我选择哪个模式,此XML文件都是有效的。我错过了什么? 以下是相关的代码:

//'Create a schema cache and add the given schema to it.
Dim schemaCache As New Schema.XmlSchemaSet

schemaCache.Add(targetNamespace, schemaFilename)

//'Create an XML DOMDocument object.
Dim xmlDom As New XmlDocument

//'Assign the schema cache to the DOM document.
//'schemas collection.
xmlDom.Schemas = schemaCache

//'Load selected file as the DOM document.
xmlDom.Load(xmlFilename)
xmlDom.Validate(AddressOf ValidationCallBack)

1 个答案:

答案 0 :(得分:0)

您可能无法识别根名称空间的that problem。在这种情况下,您需要check the root element validation status