2

我需要在我的 xsd 架构中使用在不同程序集中定义的复杂类型。我的两个 .xsd 模式都被定义为嵌入式资源,我试图链接我必须在程序集中导入的工作表,谁需要它却没有结果。

基本上,当我需要验证我的 xml 页面之一时,我会调用此函数,但它无法级联添加 Operations 中类型的 xml 模式集。

public static XmlSchema GetDocumentSchema(this Document doc)
{
    var actualType = doc.GetType();
    var stream = actualType.Assembly.GetManifestResourceStream(actualType.FullName);

    if (stream == null)
    {
        throw new FileNotFoundException("Unable to load the embedded file [" + actualType.FullName + "]");
    }

    var documentSchema = XmlSchema.Read(stream, null);

    foreach (XmlSchemaExternal xmlInclude in documentSchema.Includes)
    {
        var includeStream = xmlInclude.SchemaLocation != "Operations.xsd" 
            ? actualType.Assembly.GetManifestResourceStream(xmlInclude.Id) 
            : typeof (Operations).Assembly.GetManifestResourceStream(xmlInclude.Id);

        if (includeStream == null)
        {
            throw new FileNotFoundException("Unable to load the embedded include file [" + xmlInclude.Id + "]");
        }

        xmlInclude.Schema = XmlSchema.Read(includeStream, null); 
    }

    return documentSchema;
}

这是主要架构:

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="ExampleSheet"
       attributeFormDefault="unqualified"
       elementFormDefault="qualified"
       xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:include id="Operations" schemaLocation="Operations.xsd"/>
  <xs:element name="ExampleSheet">
    <xs:complexType>
      <xs:sequence>
      <xs:element name="Operations" type="Operations"/>
    </xs:sequence>
    <xs:attribute name="version" type="xs:string" use="required"/>
  </xs:complexType>
  </xs:element>
</xs:schema>    

这是操作的架构:

<xs:schema id="Operations"    
  elementFormDefault="qualified"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<xs:element name="Operations" type="Operations"/>
  <xs:complexType name="Operations">
    <xs:choice minOccurs="1" maxOccurs="unbounded">
      <xs:element name="Insert" type="Insert"/>
      <xs:element name="InsertUpdate" type="InsertUpdate"/>
      <xs:element name="Update" type="Update"/>
      <xs:element name="Delete" type="Delete"/>
    </xs:choice>
    <xs:attribute name="version" type="xs:string" use="required"/>
    <xs:attribute name="store" type="xs:string" use="required"/>
    <xs:attribute name="chain" type="xs:string" use="optional"/>
  </xs:complexType>
</xs:schema>

例如,如果我有一个带有插入的 ExampleSheet,它就无法识别它。Operations 和 Insert 是实现 IXmlSerializable 的类,第一个类使用自定义 XmlSchemaProvider 检索内部类型的架构集。

难道我做错了什么?如何帮助我的 ExampleSheet 接受操作成员?ExampleSheet 是否应该实现 IXmlSerializable 以便我可以根据需要构建读取器和写入器,并且该架构是否仍然有用?

4

1 回答 1

2

而不是XmlSchema,您是否查看了XmlSchemaSet班级?

我在 XML 序列化方面做得不多,所以我不知道它是否适合您当前的应用程序,但我之前曾在类似的情况下使用过它,我必须引用在 3 个单独模式中定义的类型。

然后,完整的XmlSchemaSet对象将有权访问每个模式中的所有类型。

于 2012-04-11T14:02:46.863 回答