Hello, 

i am trying to pass some object parameters to a bean. Right now i am able to
pass the body of the exhange message or the entire exchange message with:
.bean(MyBean.class, "processData(${body})")

or following for the entire Exchange
.bean(MyBean.class, "processData(*)")

The above works pretty well. Unfortunately i am unable to pass other Objects
as parameters. For example  assuming i have:

MyObject myobj = new MyObject()
.bean(MyBean.class, "processData(*,myobj )")

Is something like this possible ? 





--
View this message in context: 
http://camel.465427.n5.nabble.com/Passing-object-parameters-to-Bean-tp5762124.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to