I think you need something like this (Java DSL):

from("activemq:queue:a")
  .enrich("direct:sub", new MyAggregationStrategy()) // see
http://camel.apache.org/content-enricher.html
  .to("activemq:queue:b")

from("direct:sub")
  .convertBodyTo(SubA.class) // see
http://camel.apache.org/type-converter.html
  .to("cxf:bean:scrubbedService")

Best,
Christian

On Wed, Dec 12, 2012 at 8:10 PM, gheidorn <greg.heid...@gmail.com> wrote:

> scrubbed




--

Reply via email to