0

私は、CSV を生成するだけのかなり単純なフラット ファイル スキーマを持っています。CRLF で区切られたルート ノード、コンマで区切られたレコード ノード、およびその下の実際のフィールドがあります。

<?xml version="1.0" encoding="utf-16" ?>
<xs:schema xmlns="http://My.Namespace" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://My.Namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:appinfo>
      <schemaEditorExtension:schemaInfo namespaceAlias="b" extensionClass="Microsoft.BizTalk.FlatFileExtension.FlatFileExtension" standardName="Flat File" xmlns:schemaEditorExtension="http://schemas.microsoft.com/BizTalk/2003/SchemaEditorExtensions" />
      <b:schemaInfo standard="Flat File" codepage="65001" 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" root_reference="Root" />
    </xs:appinfo>
  </xs:annotation>
  <xs:element name="Root">
    <xs:annotation>
      <xs:appinfo>
        <b:recordInfo structure="delimited" child_delimiter_type="hex" child_delimiter="0xD 0xA" child_order="postfix" sequence_number="1" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" />
      </xs:appinfo>
    </xs:annotation>
    <xs:complexType>
      <xs:sequence>
        <xs:annotation>
          <xs:appinfo>
            <groupInfo sequence_number="0" xmlns="http://schemas.microsoft.com/BizTalk/2003" />
          </xs:appinfo>
        </xs:annotation>
        <xs:element name="Record">
          <xs:annotation>
            <xs:appinfo>
              <b:recordInfo structure="delimited" child_delimiter_type="char" child_delimiter="," child_order="infix" sequence_number="1" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" />
            </xs:appinfo>
          </xs:annotation>
          <xs:complexType>
            <xs:sequence>
              <xs:annotation>
                <xs:appinfo>
                  <groupInfo sequence_number="0" xmlns="http://schemas.microsoft.com/BizTalk/2003" />
                </xs:appinfo>
              </xs:annotation>
              <xs:element minOccurs="0" default="" name="TheFirstField" nillable="true" type="xs:string">
                <xs:annotation>
                  <xs:appinfo>
                    <b:fieldInfo justification="left" sequence_number="1" />
                  </xs:appinfo>
                </xs:annotation>
              </xs:element>
              <!-- And more fields here -->
            </xs:sequence>
          </xs:complexType>
        </xs:element>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

このスキーマで Generate Instance を実行すると、コンマだけのファイルが得られます。これは、CSV を作成するために少なくともいくらか適切に設定されていることを示唆しています。ただし、XML ファイルの入力タイプからこのスキーマをマップの出力タイプとして使用し、テスト マップを実行すると、次のようになります。

Invoking component...
TestMap used the following file: <file:///C:\path\to\test.xml> as input to the map.
C:\path\to\output.xml: error btm1046: Output validation error: The element 'Root' in namespace 'http://My.Namespace' has invalid child element 'Record'.
Test Map failure for map file <file:///C:\path\to\my\Map.btm>. The output is stored in the following file: <file:///C:\path\to\output.txt> 
Component invocation succeeded.

output.txt ファイルは最終的に作成されません。

フラット ファイル出力でマップをテストするときにこのエラーが発生する理由と、その解決方法を教えてください。

4

1 に答える 1

0

このエラーは、マップから生成された出力がスキーマで検証されないことを示しています。あなたの例を試してみましたが、私のマシン™で動作します。あなたが提供したスキーマでは、Record要素を の子にすることができRootます。

ファイルC:\path\to\output.xmlが作成されているかどうかを確認できますか? 作成されている場合、スキーマに対して検証したときに同じエラーが表示されますか? テスト マップ出力を XML ではなくネイティブに設定するとどうなりますか? グローバル アセンブリ キャッシュでアセンブリが最新かどうかも確認できますか?

于 2013-01-17T15:55:47.680 に答える