Does TIBCO EMS support JMSXGroupID and JMSXGroupSeq?
book
Article ID: KB0085016
calendar_today
Updated On:
Products
Versions
TIBCO Enterprise Message Service
-
Not Applicable
-
Description
Resolution: JMSXGroupID and
JMSXGroupSeq are defined as standard properties by the JMS specification and are provided by the following methods:
set: message.setStringProperty("JMSXGroupID", "My Group"); message.setIntProperty("JMSXGroupSeq", 12345);
get: String strValue = message.getStringProperty("JMSXGroupID"); int iValue = message.getIntProperty("JMSXGroupSeq");
These two properties, JMSXGroupID and JMSXGroupSeq, are used by client
applications for grouping messaging. They work as two
variables for applications to attach group information. The grouping is
at the application level which is transparent to the EMS server as there is no server logic for filtering messages by groups. The EMS server does not address sending all messages having the same JMSXGroupID to only one consumer, rather
the consumer application should have built-in logic to do so by using the message selector feature provided with EMS.
Issue/Introduction
Does TIBCO EMS support JMSXGroupID and JMSXGroupSeq?