I am trying to add some custom JMS headers, required by another 3rd party system to the outgoing message.
I have tried adding the following property mediator:
<property xmlns="http://ws.apache.org/ns/synapse" name="HEADER" value="VALUE" scope="transport" type="STRING"/>
The JMS broker (ActiveMQ) is receiving the HEADER:VALUE but treating it as a property, rather than a header
I know there are reserved JMS header keywords, such as JMS_TIME_TO_LIVE
, however these aren't well documented.
I suspect I may have to add something to the TRANSPORT_HEADERS
map, however the documentation states it is filled from the client request, and again, these show as properties in ActiveMQ rather than headers