user1048175
user1048175

Reputation: 1130

Azure Service Bus - *move* message from DLQ to main

I have an Azure Service Bus Queue. Messages that are not processed are moved to the Dead Letter Queue for investigation by a person. I am using Service Bus Explorer to peek at messages in the Queue.

When a message is dead lettered, I want to move it from the DLQ to main so that the system can retry message processing. When I select a message in Service Bus Explorer, it copies the message into the main queue - the end result is I still have the original message in the dead letter queue.

How do I move messages from the DLQ to Main queue?

Upvotes: 1

Views: 2584

Answers (2)

Lance
Lance

Reputation: 632

Service Bus Explorer now let's you remove the DLQ message after successfully moving it to the selected destination queue.

Resubmit

Resubmit Dialog

Upvotes: 1

user1048175
user1048175

Reputation: 1130

Answering my own question, but I have just found QueueExplorer https://www.cogin.com/mq/index.php which does all the things I need it to do and more (cut/paste of messages from queues is great, as well as the xpath columns for diagnosing issues)

Upvotes: 1

Related Questions