You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Peter (JIRA)" <ji...@apache.org> on 2018/04/26 12:53:00 UTC

[jira] [Created] (CAMEL-12471) Dots in RabbitMQ-component headers do not work

Peter created CAMEL-12471:
-----------------------------

             Summary: Dots in RabbitMQ-component headers do not work
                 Key: CAMEL-12471
                 URL: https://issues.apache.org/jira/browse/CAMEL-12471
             Project: Camel
          Issue Type: Bug
          Components: camel-rabbitmq
    Affects Versions: 2.21.0
            Reporter: Peter


Setting Exchange headers does not work for all the constants. E.g.:

.setHeader(RabbitMQConstants.DELIVERY_MODE, constant("2"))
.setHeader(RabbitMQConstants.EXCHANGE_OVERRIDE_NAME, constant("test"))
.setHeader(RabbitMQConstants.ROUTING_KEY, simple("${header.msgType}"))

Only the header for routingkey is set as header. If I set the headers like this, so without using a dot (.) then all get set, but are useless ofcourse:

.setHeader("rabbitmq_DELIVERY_MODE", constant("2"))
.setHeader("rabbitmq_EXCHANGE_OVERRIDE_NAME", constant("test"))
.setHeader(RabbitMQConstants.ROUTING_KEY, simple("${header.msgType}"))

 

I'm still checking but for now I have no idea why the header for the routingkey is working as expected but the others not.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)