2

希亚斯。我有一位客户以平面文件的形式向我们发送订单。文件实际上没有任何复杂性,但文件之间存在一些不一致之处。

文件的格式是这样的:

1,2,3[CRLF]
1,2,3[CRLF]

围绕该结构创建模式没有问题,但是他们会不时添加一个新列。

1,2,3, 4 [CRLF]
1,2,3, 4 [CRLF]

不幸的是,他们不会将更改向后级联,因此我们希望同时支持 3 列和 4 列格式。两种格式都可能通过相同的管道,所以我真的没有创建单独的模式/管道的选项。他们总是将新字段添加到行的末尾,因此至少是一致的。

我能想到的唯一一件事就是创建一个精心设计的“找出适用的架构并相应地路由管道组件”,但在我走这条路之前,我想看看是否有人对如何让它工作有一些想法使用单个平面文件架构(我尝试将可选列的 minOccurs 属性设置为 0,但这并不好)。

提前感谢您的任何建议。

4

1 回答 1

0

一种方法是为您需要支持的不同版本定义“外部”模式并导入模式。“外部”模式将提供一个choice包含对您导入的版本模式的引用的块。

如果您需要添加下一个版本,您只需导入一个新模式并将其添加到choice.

当然,困难的部分是如何确定如何处理不同的版本。也许最简单的方法是为您需要处理的每种专用类型创建一个映射。另一方面,您可以扩展“最新最好的”内部消息类型并根据消息内容进行决定。

“外部”架构

<!-- language: xml-schema -->

<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns:ns0="http://ACME.Version_001" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns="http://ACME.Outer" xmlns:ns1="http://ACME.Version_002" targetNamespace="http://ACME.Outer" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:import schemaLocation=".\version_002.xsd" namespace="http://ACME.Version_002" />
    <xs:import schemaLocation=".\version_001.xsd" namespace="http://ACME.Version_001" />
    <xs:annotation>
        <xs:appinfo>
            <b:schemaInfo standard="Flat File" root_reference="Root" />
            <schemaEditorExtension:schemaInfo namespaceAlias="b" extensionClass="Microsoft.BizTalk.FlatFileExtension.FlatFileExtension" standardName="Flat File" xmlns:schemaEditorExtension="http://schemas.microsoft.com/BizTalk/2003/SchemaEditorExtensions" />
            <b:references>
                <b:reference targetNamespace="http://ACME.Version_001" />
                <b:reference targetNamespace="http://ACME.Version_002" />
            </b:references>
        </xs:appinfo>
    </xs:annotation>
    <xs:element name="Root">
        <xs:annotation>
            <xs:appinfo>
                <b:recordInfo structure="delimited" sequence_number="1" child_delimiter_type="hex" child_order="postfix" child_delimiter="0x0D 0x0A" />
            </xs:appinfo>
        </xs:annotation>
        <xs:complexType>
            <xs:sequence>
                <xs:choice minOccurs="1">
                    <xs:element ref="ns0:Version_001">
                        <xs:annotation>
                            <xs:appinfo>
                                <b:recordInfo sequence_number="1" structure="delimited" />
                            </xs:appinfo>
                        </xs:annotation>
                    </xs:element>
                    <xs:element ref="ns1:Version_002">
                        <xs:annotation>
                            <xs:appinfo>
                                <b:recordInfo sequence_number="2" structure="delimited" />
                            </xs:appinfo>
                        </xs:annotation>
                    </xs:element>
                </xs:choice>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>

导入的架构“Version_001”

<!-- language: xml-schema -->

<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns="http://ACME.Version_001" targetNamespace="http://ACME.Version_001" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:annotation>
        <xs:appinfo>
            <b:schemaInfo standard="Flat File" root_reference="Version_001" />
            <schemaEditorExtension:schemaInfo namespaceAlias="b" extensionClass="Microsoft.BizTalk.FlatFileExtension.FlatFileExtension" standardName="Flat File" xmlns:schemaEditorExtension="http://schemas.microsoft.com/BizTalk/2003/SchemaEditorExtensions" />
        </xs:appinfo>
   </xs:annotation>
   <xs:element name="Version_001">
       <xs:annotation>
           <xs:appinfo>
               <b:recordInfo structure="delimited" child_delimiter_type="char" child_order="infix" rootTypeName="Version_001" child_delimiter="," />
           </xs:appinfo>
       </xs:annotation>
       <xs:complexType>
           <xs:sequence>
               <xs:element name="Col1" type="xs:string" />
               <xs:element name="Col2" type="xs:string" />
               <xs:element name="Col3" type="xs:string" />
           </xs:sequence>
       </xs:complexType>
   </xs:element>
</xs:schema>

导入的架构“Version_002”

<!-- language: xml-schema -->

<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" xmlns="http://ACME.Version_002" targetNamespace="http://ACME.Version_002" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:annotation>
        <xs:appinfo>
            <b:schemaInfo standard="Flat File" root_reference="Version_002" />
            <schemaEditorExtension:schemaInfo namespaceAlias="b" extensionClass="Microsoft.BizTalk.FlatFileExtension.FlatFileExtension" standardName="Flat File" xmlns:schemaEditorExtension="http://schemas.microsoft.com/BizTalk/2003/SchemaEditorExtensions" />
        </xs:appinfo>
   </xs:annotation>
   <xs:element name="Version_002">
       <xs:annotation>
           <xs:appinfo>
               <b:recordInfo structure="delimited" child_delimiter_type="char" child_order="infix" rootTypeName="Version_001" child_delimiter="," />
           </xs:appinfo>
       </xs:annotation>
       <xs:complexType>
           <xs:sequence>
               <xs:element name="Col1" type="xs:string" />
               <xs:element name="Col2" type="xs:string" />
               <xs:element name="Col3" type="xs:string" />
               <xs:element name="Col4" type="xs:string" />
           </xs:sequence>
       </xs:complexType>
   </xs:element>
</xs:schema>

(为了便于阅读,省略了一些默认属性)

于 2011-06-03T14:42:48.783 回答