Announcing the Apache Camel Developer's Cookbook

2013-12-16 Thread jkorab
I am pleased to announce that along with Scott Cranton, we have just finished writing a book about system integration with Apache Camel. The Apache Camel Developer's Cookbook is now available for pre-order through Packt Publishing and on Amazon (very exciting). You can read the full announcement on

Invalid endpoint on recipient list

2013-01-22 Thread jkorab
Hi, I am going through the recipient list pattern and am trying to work out what constitutes an "invalid endpoint". Given the following RouteBuilder: public class RecipientListUnrecognizedEndpointRouteBuilder extends RouteBuilder { @Override public void configure() throws Exception {

Re: Is there a tools to convert java dsl to xml ?

2015-06-09 Thread jkorab
Hi, cloud wrote > Is there a tools to convert java dsl to xml ? No, although you can see an XML representation of a route defined in any DSL (Java, XML, Groovy, Scala etc.) by calling a method called dumpRouteAsXml() when looking at it though JMX. cloud wrote > Is every java dsl code have

Re: Is there a tools to convert java dsl to xml ?

2015-06-09 Thread jkorab
I should also say that there is a runtime tool that allows you to see the XML of running routes - HawtIO (http://hawt.io). Jakub -- View this message in context: http://camel.465427.n5.nabble.com/Is-there-a-tools-to-convert-java-dsl-to-xml-tp5768015p5768024.html Sent from the Camel - Users mai

Re: Camel Restlet

2015-06-09 Thread jkorab
Hi Reji, contactreji wrote > Suppose I hit the endpoint with * > http://localhost:8181/cars/100?color=red&model=2015 * > with a http GET method, how do I access the * > color=red * > data in camel exchange. where does it get stored? HTTP consumer endpoints such as Jetty (and I am guessing th