JMS Event Message Format

The JMS message received by the application MDB will be a javax.jms.TextMessage.

The message header will contain the following JMS message properties:

Property Type

Property Name

String

jobId

String

status

String

cc

This allows the receiver to obtain limited information without parsing the XML of the message body.

The message body will be a single XML string with the following tags. Other tags may be added in future releases so receivers should allow for unrecognized tags in the XML.

<JobInfo>
<jobId>job ID</jobId>
<status>init|created|running|stopping|done
|importing|paused|started|deleted|</status>
<cc>cancelled|OK|failed|</cc>
<started>YYYY-MM-DD HH:MM:SS.sss TZN</started>
<ended>YYYY-MM-DD HH:MM:SS.sss TZN</ended>
</JobInfo>

The format of the time/date fields is fixed and independent of the language settings, locale, or time zone of either the SIMULIA Execution Engine or the application deployment platform.