Hi @tsb,
some ideas for your issue:
-
Don’t publish to a queue, publish to a topic. (that’s a global Solace recommendation for most use cases). Do you have any specific requirements to publish to a queue ?
To consume the messages with application 2, you need to create somehow (different ways possible) a consumer queue, that has a subscription to that topic (or a wildcard topic).
This way, you can extend later easily to multiple completeley independ consumers. -
If you really want to publish to a queue, configure that queue with a Dead Message Queue (DMQ) and a TTL (Time-to-Live). With this, your messages will be moved to the Dead Message Queue after let’s say 2 hours.
If you just want to see that misconfiguration and you don’t need to save the discarded messages, you can also skip the DMQ and just have a look at the discard statistics for that queue.
Uli