jms destination name of trigger

Hi EveryOne,
How could we know the trigger’s destination name at trigger jms service level ? In fact I have 32 jms triggers that call the same service and I need to know the jms destination name (which is configured in the trigger) within this service to map it into the canonical document. The problem is that I only have the jms message as an input of the called service. This message doesnt contain the jms destination name (null).
any help please!!

Hello,

You need to provide the queue or topic name from where you are going to receive the JMS message as destination.

Destination= Topic / Queue already configured from where to receive the message.

HTH

Sasanka

In JMSMessage/Header, you can see a field called JMSDestination which will hold the value of TOPIC/QUEUE.

HTH
Senthil