Author Archives: admin

ServiceMix (FuseESB) Unit Testing your routes

Today I will present simple way to test your camel routes. For building camel based service mix application, look into Part 4 of this tutorial series. Let’s say we have the following route defined in a class extending RouteBuilder class: public void configure() {         from("activemq:test2").split(xpath("/notes/note")).parallelProcessing().setHeader("id", simple("123")).to("activemq:test3");     } This route […]

Read More →