paolosalvatori / ServiceBusExplorer

The Service Bus Explorer allows users to connect to a Service Bus namespace and administer messaging entities in an easy manner. The tool provides advanced features like import/export functionality or the ability to test topic, queues, subscriptions, relay services, notification hubs and events hubs.
MIT License
2.02k stars 588 forks source link

transfer one on multiple message from Messages to Dead-letter #799

Closed maitrefou974 closed 3 months ago

maitrefou974 commented 3 months ago

Hi, I don't know if the feature exists... So I ask the question : Is it possible to move some messages from a topic / queue to its dead-letter queue ?

In code would be like if we consumed the messages in a loop and returned a DeadLetterMessage action for each selected message.

Thank you!

SeanFeldman commented 3 months ago

Is it possible to move some messages from a topic / queue to its dead-letter queue ?

No. Messages are moved to the DLQ by the broker (service side), not manually.

SeanFeldman commented 3 months ago

You can receive a message and dead-letter it, but have to receive it first. See documentation for this option here-system-string-system-string-system-threading-cancellationtoken)).

maitrefou974 commented 3 months ago

I know how to do it in code, I wanted to know if there is a user button on service bus explorer to do it.

SeanFeldman commented 3 months ago

Recieved and delete a single message from DLQ is the only thing I can think of that comes the closest to this.