Willem.Jiang wrote
> 
> 
> 
> How about the route like this
> 
> from("direct:in").to("http://somewhere";).bean(mybean, "process").to("your
> endpoint")
> 
> You can store the parameter into the exchange property, and it will be
> copied across the route.
> 
> 

Thanks for confirming this. Is it possible to to configure mybean in
parallel with sending the http request (maybe using mulitcast or some other
Camel feature/component) ? 

I would like to do something like the following

from("direct:in").mulitcast("http://somewhere";,
"bean:mybeanconfigurator").parallelProcessing().??.bean(mybean,
"process").to("end_point"); 
 

1. I'm not sure what goes in ?? above. 
2. Also, I want to do some post processing on the response from the request
to http://somewhere. 
3. Finally, I want to invoke this route using a ProducerTemplate and get a
response back. 

Thanks. 



--
View this message in context: 
http://camel.465427.n5.nabble.com/How-to-get-this-done-in-Camel-tp5709759p5709930.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to