Headers
JMS Message headers associate a fixed set of header field names with values. Clients and providers use headers to identify and route messages.
Programs can access header values using the function calls in the following table.
However, programs can effectively set only three message header properties—Reply To, Correlation ID and Type. For all other header properties, the provider ignores or overwrites values set by client programs.
Description |
---|
Correlation ID
Correlation ID refers to a related message. For example, when a consumer responds to a request message by sending a reply, it can set the correlation ID of the reply to indicate the request message. The JMS specification allows three categories of values for the correlation ID property:
|
Delivery Delay
A producer can specify that a message must not be delivered until after a specified time interval, which directs the server to delay delivery of the message. Sending calls can set the delivery delay for each message based on a property of the producer. To set the producer property, see tibemsMsgProducer_SetDeliveryDelay. |
Delivery Mode
Delivery Mode instructs the server concerning persistent storage for the message. For detailed information on delivery modes, see the TIBCO Enterprise Message Service User’s Guide. Sending calls set the delivery mode for each message, based on either a property of the producer, or on a parameter to the sending call. To set the producer property, see tibemsMsgProducer_SetDeliveryMode. For values, see tibemsDeliveryMode. |
Destination
Sending calls set the destination (queue or topic) of the message in this header and will overwrite any existing value. The value is based on either a property of the producer, or on a parameter to the send call. Listeners that consume messages from wildcard destinations can use this property to determine the actual destination of a message. |
Expiration
Sending calls set the expiration time (in milliseconds) of the message in this field:
|
Message ID
Sending calls assign a unique ID to each message, and record it in this header. All message ID values start with the 3-character prefix ID: (which is reserved for this purpose). Applications that do not require message IDs can reduce overhead costs by disabling IDs; see tibemsMsgProducer_SetDisableMessageID. When the producer disables IDs, the value of this header is null. |
Priority
Sending calls set the priority of a message in this header, based on either a property of the producer (tibemsMsgProducer_SetPriority), or on a parameter to the send call. The JMS specification defines ten levels of priority value, from zero (lowest priority) to 9 (highest priority). The specification suggests that clients consider 0–4 as gradations of normal priority, and priorities 5–9 as gradations of expedited priority. Priority affects the order in which the server delivers messages to consumers (higher values first). The JMS specification does not require all providers to implement priority ordering of messages. (EMS supports priorities, but other JMS providers might not.) |
Redelivered
The server sets this header to indicate whether a message might duplicate a previously delivered message:
See also, tibemsAcknowledgeMode |
Reply To
Sending clients can set this header to request that recipients reply to the message:
When sending a reply, clients can refer to the corresponding request by setting the Correlation ID. |
Timestamp
Sending calls record a UTC timestamp in this header, indicating the approximate time that the server accepted the message. The value is in milliseconds since January 1, 1970 (as in Java). Applications that do not require timestamps can reduce overhead costs by disabling timestamps; see tibemsMsgProducer_SetDisableMessageTimestamp. When the producer disables timestamps, the value of this header is zero. |
Type
Some JMS providers use a message repository to store message type definitions. Client programs can store a value in this field to reference a definition in the repository. EMS support this header, but does not use it. The JMS specification does not define a standard message definition repository, nor does it define a naming policy for message type definitions. Some providers require message type definitions for each application message. To ensure compatibility with such providers, client programs can set this header, even if the client application does not use it. To ensure portability, clients can set this header with symbolic values (rather than literals), and configure them to match the provider’s repository. |