I'm developing a system which will be posting messages onto a remote MSMQ queue. If messages cannot be delivered or received then I would like to attempt a resend at a later time.
One approach would be to list all the System Dead Letter Queue (DLQ) messages on the sending computer and resend any relevant ones. Another approach would be to use an admin queue to receive any negative acknowledgments and resend all messages on this queue.
Is one approach better than the other ?
One advantage I would see is that only relevant messages will be present on the admin queue, while the system DLQ can have messages from other queues.
Are there any scenarios where failed messages would go to the DLQ but not the admin queue ?
Thanks K.