Products | Versions |
---|---|
TIBCO Enterprise Message Service | - |
Not Applicable | - |
Resolution:
Since you are using the monitor topics, the message_bytes that you get in this listener is a wire representation of a TibjmsMessage:
Received message: MapMessage={ ... Fields={ message_bytes={byte[]:573 bytes} } }
To reconstruct a message from this you need to use Tibjms.createMessageFromBytes() with the message_bytes byte array. After this conversion, if you print the reconstructed message, it will be the same than the original message received on the destination.