Dealing with messages in Dead message Queue

Hi @akiralt … yeah, as mentioned previously, there is currently no way to move messages from one queue to another with tooling inside the broker. This may change in future releases. Other customers of our have used JMS Toolbox, but it is a client-side tool, not the broker.

But I’m wondering if your intended flow could be improved somehow… you app pulls ALL messages of queue A, then “puts the unnecessary messages back” to a different queue B (i.e. your app republishes new messages with the original content?), and then queue B has queue A as a DMQ, and eventually the messages to back to the same app…? Is that right? If your app doesn’t republish, then how does your app “put the unnecessary messages back”?

Thanks!