我要求使用SFTP将文件发送给外部供应商。为此,我们必须下载客户端证书和密钥。我们正在使用Mule EE 3.6.2是否可以在SFTP Outbound中配置SSL客户端,就像使用SFTP连接器的http一样。我在SFTP连接器文档中找不到任何内容。感谢。
此致 哈
答案 0 :(得分:0)
您可以使用identityFile
配置SFTP连接器并将其关联passphrase
<sftp:endpoint name="get-file" host="${sftp.host}" port="${sftp.port}" path="${sftp.path}"
user="${sftp.username}" responseTimeout="10000" pollingFrequency="${sftp.pollInterval}"
identityFile="${app.home}/${sftp.keyPath}" passphrase="${sftp.passphrase}" connector-ref="sftp">
</sftp:endpoint>