[ 
https://issues.apache.org/jira/browse/CAMEL-3564?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12984727#action_12984727
 ] 

Madhav Bhargava commented on CAMEL-3564:
----------------------------------------

There is another problem.
If you check DefaultCxfBinding class there is a method: 
propagateHeadersFromCamelToCxf which would propagate the headers from camel to 
CXF.

The transport headers have been defined as:
Map<String, List<String>> transportHeaders = new HashMap<String, 
List<String>>();

Now when you allow people to set an Object as a value against a key as header 
then you will have to change this to Map<String, Object>. I tried to set a Map 
object against the key and it converted the value to the default string 
representation of the Map which is not what is desired.

Best Regards,
Madhav

> RefLanguage - To be able to refer to something from the registry
> ----------------------------------------------------------------
>
>                 Key: CAMEL-3564
>                 URL: https://issues.apache.org/jira/browse/CAMEL-3564
>             Project: Camel
>          Issue Type: New Feature
>          Components: camel-core, camel-spring
>    Affects Versions: 2.5.0
>            Reporter: Claus Ibsen
>            Priority: Minor
>             Fix For: 2.7.0
>
>
> See nabble
> http://camel.465427.n5.nabble.com/Set-exchange-property-to-a-Map-tp3349171p3349171.html
> This is needed for folks using XML routing. An expression which can refer to 
> something from the registry.
> We can also add a {{ref}} function to the simple language so you can use that 
> as well.
> In simple the function should be {{ref:id}} where id is the id to lookup.
> For example
> {code:xml}
> <bean id="foo" class=...>
>    <!-- options -->
> </bean>
> <setProperty name="myFoo">
> <ref id="foo"/>
> </setProperty>
> {code}
> And when using simple
> {code:xml}
> <setProperty name="myFoo">
> <simple>${ref:foo}</simple>
> </setProperty>
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to