Re: [ARTEMIS] Get name of consumer in an interceptor

2018-04-25 Thread Phil Crowder
So the broker plugin does return the data that i need. However, the beforeDeliver and afterDeliver methods are firing when a JMS subscription by a client is made and not when the message is consumed by a JMS client. I have verified this, I believe, by 1. Subscribing the the topic with a JMS clien

Re: [ARTEMIS] Get name of consumer in an interceptor

2018-04-24 Thread Justin Bertram
As discussed in IRC I think your best bet is to use a broker plugin. Justin On Tue, Apr 24, 2018 at 9:54 AM, Phil Crowder wrote: > I'm trying to get the consumer's user id/ name that is consuming messages > on > topic queue. I can see a userId on the Message object but it looks like a > UUID.

[ARTEMIS] Get name of consumer in an interceptor

2018-04-24 Thread Phil Crowder
I'm trying to get the consumer's user id/ name that is consuming messages on topic queue. I can see a userId on the Message object but it looks like a UUID. Is there a way to map the UUID to the connected consumer? Should I look at something else? Or is there another way to get this information? I