function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SimplySfdcSimplySfdc 

Outbound Message keep sending

Hi,

 

I use Outbound Message to send message to asmx end point. This process is success.

The endpoint call another web service and it work successfully.

 

My issue happen when asmx call web service, salesforce.com keep sending Notification

I check in Outbound Messaging Delivery Status and I log it, sfdc send the keep send the same Outbound Message ID.

 

But, If I do not call web service from asmx, it only send once. How do I fix this issue to make Outbound Message not keep sending notification?

 

sq

 

Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell
You have to acknowledge the message within the expected timeframe, otherwise the server deems the message undelivered. If your processing/web service call is taking too long, then you will need to do something to buffer the message locally first (e.g. have your listener simply enqueue another message in a local transactional queue. and have your actual processing based on that queue instead).