【问题标题】:BizTalk Flat File Schema with optional last child record带有可选最后一个子记录的 BizTalk 平面文件架构
【发布时间】:2020-11-10 17:20:26
【问题描述】:

我正在尝试创建一个带分隔符的平面文件架构,该架构负责处理以下文件格式:

"ID","Surname","FirstName"{CR}{LF}
"FINAL","123","abc"{CR}{LF}

以上只是一条记录。以“FINAL”开头的行是可选行。

文件中的多条记录可能如下所示:

"ID","Surname","FirstName"{CR}{LF}
"FINAL","123","abc"{CR}{LF}
"ID","Surname","FirstName"{CR}{LF}
"FINAL","456","def"{CR}{LF}

或者,它也可以如下所示:

"ID","Surname","FirstName"{CR}{LF}
"ID","Surname","FirstName"{CR}{LF}
"FINAL","123","abc"{CR}{LF}

上面的最后一个示例包含一个没有可选“FINAL”行的记录,并继续在它下面的新记录。但是在这种情况下,我收到一个错误(原因:不匹配的换行符 " )。

我注意到,如果文件包含 {CR}{LF} 来代替缺少的可选“FINAL”行,如下所示:

"ID","Surname","FirstName"{CR}{LF}
{CR}{LF}
"ID","Surname","FirstName"{CR}{LF}
"FINAL","123","abc"{CR}{LF}

它似乎有效,但是我将接收没有任何额外 {CR}{LF} 代替缺少的可选行的文件。

架构中是否有我需要设置的属性来处理这个问题?可选子记录的 MinOccurs 设置为 0。

【问题讨论】:

    标签: visual-studio schema biztalk biztalk-2013


    【解决方案1】:

    我会使用带有标签标识符的选择组

    <?xml version="1.0" encoding="utf-16"?>
    <xs:schema xmlns="http://Scratch.MSDNFF" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://Scratch.MSDNFF" xmlns:xs="http://www.w3.org/2001/XMLSchema">
      <xs:annotation>
        <xs:appinfo>
          <b:schemaInfo standard="Flat File" root_reference="Root" default_pad_char=" " pad_char_type="char" count_positions_by_byte="false" parser_optimization="speed" lookahead_depth="3" suppress_empty_nodes="false" generate_empty_nodes="true" allow_early_termination="false" early_terminate_optional_fields="false" allow_message_breakup_of_infix_root="false" compile_parse_tables="false" />
          <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="Root">
        <xs:annotation>
          <xs:appinfo>
            <b:recordInfo structure="delimited" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" sequence_number="1" child_order="postfix" child_delimiter_type="hex" child_delimiter="0x0D 0x0A" />
          </xs:appinfo>
        </xs:annotation>
        <xs:complexType>
          <xs:sequence>
            <xs:annotation>
              <xs:appinfo>
                <b:groupInfo sequence_number="0" />
              </xs:appinfo>
            </xs:annotation>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
              <xs:annotation>
                <xs:appinfo>
                  <b:groupInfo sequence_number="1" />
                </xs:appinfo>
              </xs:annotation>
              <xs:element name="ID">
                <xs:annotation>
                  <xs:appinfo>
                    <b:recordInfo structure="delimited" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" tag_name="&quot;ID&quot;," child_order="infix" child_delimiter_type="char" child_delimiter="," sequence_number="1" />
                  </xs:appinfo>
                </xs:annotation>
                <xs:complexType>
                  <xs:sequence>
                    <xs:annotation>
                      <xs:appinfo>
                        <b:groupInfo sequence_number="0" />
                      </xs:appinfo>
                    </xs:annotation>
                    <xs:element name="Firstname" type="xs:string">
                      <xs:annotation>
                        <xs:appinfo>
                          <b:fieldInfo sequence_number="1" justification="left" wrap_char_type="char" wrap_char="&quot;" />
                        </xs:appinfo>
                      </xs:annotation>
                    </xs:element>
                    <xs:element name="Surname" type="xs:string">
                      <xs:annotation>
                        <xs:appinfo>
                          <b:fieldInfo sequence_number="2" justification="left" wrap_char_type="char" wrap_char="&quot;" />
                        </xs:appinfo>
                      </xs:annotation>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
              <xs:element minOccurs="0" name="FINAL">
                <xs:annotation>
                  <xs:appinfo>
                    <b:recordInfo structure="delimited" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" tag_name="&quot;FINAL&quot;," child_order="infix" child_delimiter_type="char" child_delimiter="," sequence_number="2" />
                  </xs:appinfo>
                </xs:annotation>
                <xs:complexType>
                  <xs:sequence>
                    <xs:annotation>
                      <xs:appinfo>
                        <b:groupInfo sequence_number="0" />
                      </xs:appinfo>
                    </xs:annotation>
                    <xs:element name="Number" type="xs:string">
                      <xs:annotation>
                        <xs:appinfo>
                          <b:fieldInfo justification="left" wrap_char_type="char" wrap_char="&quot;" sequence_number="1" />
                        </xs:appinfo>
                      </xs:annotation>
                    </xs:element>
                    <xs:element name="Letters" type="xs:string">
                      <xs:annotation>
                        <xs:appinfo>
                          <b:fieldInfo justification="left" wrap_char_type="char" wrap_char="&quot;" sequence_number="2" />
                        </xs:appinfo>
                      </xs:annotation>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
              <xs:element minOccurs="0" maxOccurs="unbounded" name="Empty">
                <xs:annotation>
                  <xs:appinfo>
                    <b:recordInfo structure="delimited" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" sequence_number="3" />
                  </xs:appinfo>
                </xs:annotation>
                <xs:complexType>
                  <xs:sequence>
                    <xs:annotation>
                      <xs:appinfo>
                        <b:groupInfo sequence_number="0" />
                      </xs:appinfo>
                    </xs:annotation>
                    <xs:element name="Field" type="xs:string">
                      <xs:annotation>
                        <xs:appinfo>
                          <b:fieldInfo sequence_number="1" justification="left" />
                        </xs:appinfo>
                      </xs:annotation>
                    </xs:element>
                  </xs:sequence>
                </xs:complexType>
              </xs:element>
            </xs:choice>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>
    

    【讨论】:

      猜你喜欢
      • 2015-12-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-04-02
      • 1970-01-01
      • 2023-03-11
      • 2023-03-22
      • 1970-01-01
      相关资源
      最近更新 更多