我正在使用BizTalk平面文件架构来处理CSV文件。我的架构基本上是这样的:
<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns="http://My.Namespace.For.Schema" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://My.Namespace.For.Schema" 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="MyFile" />
</xs:appinfo>
</xs:annotation>
<xs:element name="MyFile">
<xs:annotation>
<xs:appinfo>
<b:recordInfo structure="delimited" child_delimiter_type="hex" child_delimiter="0x0D 0x0A" child_order="postfix" sequence_number="1" preserve_delimiter_for_empty_data="true" suppress_trailing_delimiters="false" rootTypeName="MyFile" />
</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 maxOccurs="unbounded" name="MasEdiAuditRecord">
<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 name="SomeField" type="xs:string">
<xs:annotation>
<xs:appinfo>
<b:fieldInfo justification="left" sequence_number="1" wrap_char_type="char" wrap_char=""" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="SomeOtherField" type="xs:string">
<xs:annotation>
<xs:appinfo>
<b:fieldInfo justification="left" sequence_number="2" wrap_char_type="char" wrap_char=""" />
</xs:appinfo>
</xs:annotation>
</xs:element>
<!-- And a whole bunch more fields -->
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
当文件实际包含CSV记录时,此方法可以正常工作。但是,我有时会收到空白文件,我还需要解析这些文件(并最终启动编排。所以,我想要一个空白的CSV文件来生成类似的文件:
<ns0:MyFile xmlns:ns0="http://My.Namespace.For.Schema">
</ns0:MyFile>
但据我所知,当接收端口获取空白文件时,接收管道会启动,然后下游不会发生任何其他情况。我假设这是因为平面文件架构产生一个空消息,然后BizTalk在此时停止。
当收到空白文件时,如何使平面文件架构仍生成没有子记录的XML记录?
答案 0 :(得分:3)
您可能能够编写一个自定义管道组件来处理这种情况:一个检出入站消息的组件,如果为空,则创建一种除了空格之外什么都没有的消息。这可能有用。
有一个很好的例子可以创建自定义管道组件here。
答案 1 :(得分:1)
我最终做的是更改进程,以便在接收管道中不删除标头记录。因此,永远不会有“空白”消息,只有一条消息只包含标题记录。然后,我使用Filtering records using Maps and conditional looping过滤掉启动业务流程的映射中的标头记录。