How to access a JMSCorrelationID in Spring Integration?
Hello, I have a quick question: does a Spring Integration (SI) MessageHeader.getCorrelationId() map to a JMS Message.getCorrelationID() ?
In other words, I have an SI Message object "siMessage". I need to access the JMSCorrelationID that should have been set by another system at the JMS API level. Can I get this value by invoking siMessage.getHeader().getCorrelationId() ? If not, how would I access the JMSCorrelationID header value?
Thanks,
Brad