Common JMS Properties and Headers
JMS properties comprise message headers and message properties. MessageHeader properties are set by the JMS client sending the message. You can view these after the message is received. You can also set MessageProperties on the outgoing messages on the Input tab of the activity that sends messages.
Message Headers
The following table describes the messages headers.
Message Properties
The following table describes the messages properties.
MessageProperties | Dataype | Description |
---|---|---|
JMSXUserID | string | The ID of the user sending the message.
This property is optionally set on incoming messages by the JMS application. This property is not set on outgoing messages. |
JMSXAppID | string | The ID of the application sending the message.
This property is optionally set on incoming messages by the JMS application. This property is not set on outgoing messages. |
JMSXProducerTIXID | string | The transaction identifier of the transaction where this message was produced.
This property is optionally set on incoming messages by the JMS application. This property is not set on outgoing messages. |
JMSXConsumerTXID | string | The transaction identifier of the transaction where this message was consumed.
This property is optionally set on incoming messages by the JMS application. This property is not set on outgoing messages. |
JMSXRcvTimestamp | integer | The time the JMS server delivered the message to the consumer. The time is expressed as the amount of time, in milliseconds since midnight, January 1, 1970, UTC.
This property is optionally set on incoming messages by the JMS server. This property is not set on outgoing messages. |
JMSXDeliveryCount | integer | The number of delivery attempts for this message. |
JMSXGroupID | string | The identity of the message group this message is a part of.
You can set this property on outgoing messages to group messages into a numbered sequence. |
JMSXGroupSeq | integer | The sequence number of this message in its group.
You can set this property on outgoing messages to group messages into a numbered sequence. |