我编写了一个小型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)