Reputation: 317
One of our Biztalk customers asks us automatically resend failed and suspended messages every 5 hours. And problem is that developed orchestrations intensively uses Suspend shape so as far as I understand messages became suspended immediately without standard Biztalk retrial.
I'm going to write simple app that will resume suspended messages via WMI Biztalk object . Is this a good approach?
Does anybody has such application or did you find another resolution for this problem ?
Upvotes: 0
Views: 1570
Reputation: 11527
Replace the suspend shape in the Orchestration with a delay shape configured to 5 hours. Another options is to set the retry interval to 300 minutes and multiple retries on the send port.
Upvotes: 1