camel http endpoint forming url dynamically
问题 Guys I am trying to use { from("direct:a").to (someUrl).processor(new Processor(){ @Override public void process(Exchange arg0) throws Exception { // do something } }); where someUrl is of the type http://xyz.com/{id}?test=<value1>&test1=<value2> } and this url will change on every request to the route. What i have already tried. Passing params as headers and try to access in the route using the header("test") and using ${in.header.test} both doesn't seem to work. any suggestions will be