Resubmitting a message from dead letter queue - Azure Service Bus

Libin Joseph picture Libin Joseph · Jan 23, 2017 · Viewed 9k times · Source

I have created a service bus queue in Azure and it works well. And if the message is not getting delivered within default try (10 times), it is correctly moving the message to the dead letter queue.

Now, I would like to resubmit this message from the dead letter queue back to the queue where it originated and see if it works again. I have tried the same using service bus explorer. But it gets moved to the dead letter queue immediately.

Is it possible to do the same, and if so how?

Answer

Sean Feldman picture Sean Feldman · Jan 23, 2017

You'd need to send a new message with the same payload. ASB by design doesn't support message resubmission.