Hello. I was looking for some way to "wire tap" messages send to all our queues, and I've found the "mirrored queue" documentation.
With a simple configuration I can see the created topics that match the queues, and the count of messages that are copied. But no way to browse the mirror topics. Then I tried to configure some virtual destinations to copy the mirrored messages to a persistent queue, but it didn't work. <destinationInterceptors> <mirroredQueue copyMessage = "true" postfix="" prefix="MIRRORED."/> <virtualDestinationInterceptor> <virtualDestinations> <compositeTopic name="MIRRORED.*" forwardOnly="false"> <forwardTo> <queue physicalName="WIRE-TAP.*" /> </forwardTo> </compositeTopic> </virtualDestinations> </virtualDestinationInterceptor> </destinationInterceptors> No message is forwarded. I've tried setting a queue "constant" physical name, even if in reality I'd like to have one copy queue for every natural queue. FYI, by design of applications, the queues number is not known, and their name can vary too depending on the ESB activities... Any expert to confirm this is possible ? Thanks a lot for your help. Regards. *