【发布时间】:2015-08-20 02:01:24
【问题描述】:
我通过使用直到成功,对出站 FTP 使用重试机制。它工作正常,但它在 mule 3.4.2 中以异步方式工作。我已经看到同步选项在 3.5 中可用。是否有可能使直到成功的范围在 3.4.2 版本中同步工作?如果可能的话,你能给我提供解决方案吗?或者任何其他使用重试机制进行出站 FTP 的解决方案?
<until-successful objectStore-ref="objectStore" maxRetries="3" secondsBetweenRetries="1" doc:name="Until Successful">
<ftp:outbound-endpoint host="10.10.10.10" port="7055" path="#[flowVars.FTPConfig.getPath()]" user="user" password="password" outputPattern="${filename}" responseTimeout="20000" doc:name="FTP" connector-ref="FTP"/>
</until-successful>
【问题讨论】:
标签: mule mule-studio mule-component