Retry web service call

0
Hi, I have a requirement, where in case of failing to a call web service (as it may not be available), I need to store web service call details and retry calling the web service again after certain time interval. Could you please suggest ways to achieve this requirement. Thanks and Regards, Savita
asked
1 answers
0

That could be achieved with a Scheduled event. If call fails, store the call details in an separated entity. (or mark i.e. the original as not sent using a Boolean)

Schedule a event at your convenient interval, retrieve not sent call details and retry webservice call.

answered