Can any one help me out in achieving retry mechanism for Mule SFTP outbound-end point for one-way MEP .
Asked
Active
Viewed 937 times
1 Answers
0
Reconnection strategy is configured on the SFTP connector: it reconnects the connector and inbound endpoints.
Outbound endpoints are automatically reconnected.
If you are asking about retrying outbound operations in case of failure, you have two options:
- If the inbound endpoint of the flow can perform redeliveries (JMS, AMQP...), use this mechanism to trigger retries of the whole flow that contains the SFTP outbound,
- Otherwise wrap the outbound SFTP with
until-successful
: http://www.mulesoft.org/documentation/display/current/Until+Successful+Scope

David Dossot
- 33,403
- 4
- 38
- 72
-
Thanks David for your reply. Sorry i was wrong with re-connection, i was looking for a retry mechanism for sftp outbound end one way.In mule sftp transport mechanism documentation it was mentioned it sftp doesn't support retry. I was looking for any alternative approach to achieve it. – Mohan May 15 '14 at 03:53
-
Then I've extended my answer :) – David Dossot May 15 '14 at 14:17