I think what you need is a dynamic router http://camel.apache.org/dynamic-router.html Did you look at it?
Bilgin On 26 January 2012 00:00, anand sridhar <anand.for...@gmail.com> wrote: > Hi, > I have a route with the endpoint being a HTTP URL. > It so happens that this URL is in a properties file. > > Could some one help me to understand how I can dynamically load the end > point name from a property file or in general from header, property etc..? > > apparently, none of these work > > from("jms:q1") > .to("${properties:httpurl}") > > or > from("jms:q1") > .to(header("httpurl")); > > or > > from("jms:q1") > .to(property("httpurl")); > > does not resolve even though the httpurl parameter is present in header as > well as property. > > Thanks, > Anand