我正在尝试连接到SFTP位置并使用Mule SFTP连接器下载.zip文件。它看起来非常简单,但我不确定我的配置中缺少什么。我无法弄清楚为什么它不适合我。有人可以看看它,并建议我应该做些什么来改变工作?
在下面的流配置中,我从HTTP端点(http://localhost:8181/invoice)开始,然后调用“ftpconnectivityFlow1”并检查" ftp"的值。变量并根据其值来转到我的FTP位置或SFTP位置。当我设置变量" ftp"为true它按预期工作,因为我可以看到来自FTP位置的文件被下载到我的输出文件夹中并按预期从FTP位置删除。当我将其设置为false时,它没有给出任何错误,但SFTP位置的文件仍然存在,这意味着它无法读取文件(我猜)并且它没有下载到我的输出文件夹。所以对于一些调试我添加了一个自定义变换器,以便我可以检查有效负载在我的自定义变换器中,我注意到当它连接到FTP位置时它有一些二进制数据(所有数字),我猜它是我的.zip文件,但是当变量" ftp"设置为false,这意味着它正在尝试连接到SFTP位置,在这种情况下,有效负载包含" / invoice"这是我的http相对路径。所以我的输出文件夹包含一个名为“null”的文件,它包含的是" / invoice"
非常感谢任何帮助。
<flow name="ftpconnectivityFlow1">
<logger message="ftp:#[message.outboundProperties['ftp']]" doc:name="Logger" level="INFO"/>
<choice doc:name="Choice">
<when expression="#[message.outboundProperties['ftp']==true]">
<flow-ref name="FTPConnection" doc:name="FTPFileDownloadConnection"/>
</when>
<otherwise>
<flow-ref name="SFTPConnection" doc:name="SFTPFileDownloadConnection"/>
</otherwise>
</choice>
</flow>
<flow name="FTPConnection">
<ftp:inbound-endpoint host="host" port="22" path="abc" user="user" password="password" responseTimeout="10000" doc:name="FTP"/>
<custom-transformer class="abc.transformer.CustomeFileTransformer" />
<logger message="connected to FTP" level="INFO" doc:name="Logger"/>
<file:outbound-endpoint path="output" outputPattern="#[message.inboundProperties['originalFilename']]" responseTimeout="10000" doc:name="File"/>
</flow>
<flow name="SFTPConnection">
<sftp:inbound-endpoint connector-ref="sftp-default" doc:name="SFTP" responseTimeout="10000" host="host" password="password" path="/Inbound" port="21" user="user"/>
<custom-transformer class="abc.transformer.CustomeFileTransformer" />
<logger level="INFO" doc:name="Logger"/>
<file:outbound-endpoint path="output" outputPattern="#[message.inboundProperties['originalFilename']]" responseTimeout="10000" doc:name="File"/>
</flow>
答案 0 :(得分:0)
<ftp:inbound-endpoint host="host" port="22" ... doc:name="FTP"/>
...
<sftp:inbound-endpoint ... port="21" user="user"/>
您可能会向后反转这些端口号。 FTP通常在端口21上运行,SFTP(SSH)通常使用端口22。