Mule - Send SFTP outbound message after Collection Split

时间:2016-04-25 09:05:42

标签: mule sftp outbound

I am using collection-splitter to split my List. Now how should I set the payload to SFTP outbound-endpoint.

        <sftp:inbound-endpoint connector-ref="sftp-inbound" host="${SFTP_HOST}" port="${SFTP_PORT}" 
        path="/files/" user="${SFTP_USER}" password="${SFTP_PASS}" 
        responseTimeout="10000" pollingFrequency="30000" fileAge="20000" sizeCheckWaitTime="5000" 
        archiveDir="/files/archive/" doc:name="SFTP"  >
             <file:filename-regex-filter pattern="Test(.*).zip" caseSensitive="true"/>
        </sftp:inbound-endpoint>

        <set-variable variableName="regexVal" value="${REGEX}" doc:name="Variable"/>
        <set-variable variableName="sourceFileName" value="#[flowVars.originalFilename]" doc:name="Variable"/>

        <custom-transformer name="zipTxt" class="com.mst.transform.UnzipTransformer" doc:name="Java" mimeType="image/gif">
            <spring:property name="filenamePattern" value="*.csv,*.txt" />
        </custom-transformer>

        <set-variable variableName="fileContents" value="#[payload]" />

        <collection-splitter enableCorrelation="IF_NOT_SET" />

        <logger message="#[payload]" level="INFO" doc:name="Logger"/>

        <sftp:outbound-endpoint connector-ref="sftp-inbound" 
            host="${SFTP_HOST}" port="${SFTP_PORT}" 
            path="/files/" user="${SFTP_USER}" password="${SFTP_PASS}"  
            responseTimeout="10000" doc:name="SFTP" 
            exchange-pattern="one-way"/>

 </flow>

1 个答案:

答案 0 :(得分:2)

如果收集拆分器之前的有效负载是SFTP出站端点(如InputStream)可以使用的对象列表,那么在拆分器之后,您可以将处理器链中的logger,sftp包装起来。 Splitter将逐个发送每个对象到处理器链。如果它是一个InputSream,SFTP应该能够写它。

<collection-splitter enableCorrelation="IF_NOT_SET" />

<processor-chain doc:name="Processor Chain">
        <logger message="#[payload]" level="INFO" doc:name="Logger"/>

        <sftp:outbound-endpoint connector-ref="sftp-inbound" 
            host="${SFTP_HOST}" port="${SFTP_PORT}" 
            path="/files/" user="${SFTP_USER}" password="${SFTP_PASS}"  
            responseTimeout="10000" doc:name="SFTP" 
            exchange-pattern="one-way"/>
</processor-chain>

如果您只想在分离器之后放置一个处理器(例如SFTP),则不需要处理器链。

如果这不起作用,请在问题中添加错误详情。