• Need help in Exec

    I am trying Exec component... running md5sum.exe. I can see it running in process list (in task manager). Also the exit code is 0 (success). However, I do not see its output in the outFile specified. Am I missing anyt...
    Profile Photo
    last modified by sanjayeipl
  • camel-example-osgi-2.9.2 in JBoss AS 7.1.1 fails

    Hello,   the camel-example-osgi-2.9.2 throws exception when installing into JBoss AS 7.1.1 (OSGi subsystem enabled, camel jars as JBoss module)   09:33:48,486 INFO  [org.jboss.osgi.framework.internal....
    Profile Photo
    last modified by labo32_delaboe
  • camel-core as jboss 7 module leads to NoClassDefFoundError

    select camel dependencies as mentioned in http://camel.apache.org/what-are-the-dependencies.html     and create JBoss AS 7 module xml   <?xml version="1.0" encoding="UTF-8"?> <module xmlns=...
    Profile Photo
    last modified by labo32_delaboe
  • question on camel-cdi component

    Hello together,   after my first example using the camel-cdi component I am wondering why the component is only available in the fusesource repo as 2.x-fuse-SNAPSHOT (   1) Is the component ready for pr...
    Profile Photo
    last modified by labo32_delaboe
  • Aggregation (Enrichment & Multicasting)

    Mediator Router Version - 2.8.0-fuse-05-03   Hello,   I really need help on this please. Please forgive me if   (a) This has already been covered somewhere else. I have not been able to find relevant...
    Profile Photo
    last modified by emeka_kanu
  • Separate XML tags in differents files with splitter

    Hi guys!   I'm a beginner in apache camel and I would develop a route which separate XML tags in differents xml files with the split().   For example with the xml file below :   <person user="j...
    Profile Photo
    last modified by alexis229
  • looking for blueprint xml file for http to http routing

    hi,   I need to find the correct blueprint xml syntax for http to http routing. the http consumer to receive xml file in http post, and route to http provider to send the data in http get format.   http co...
    Profile Photo
    last modified by forestgreenpencil
  • Route with same routeId killing previous route

    I have a custom camel component for a pub/sub system which is defined in a routers as follows:   class Router extends RouteBuilder() {    from("customComponent:foo")       .r...
    Profile Photo
    last modified by jamie3_james.archibald
  • Problem with jetty & javamail running camel under tomcat

    I'm using Apache Camel to deliver a file as an email attachment. It works perfectly using the following maven goals:   jetty:run jetty:run-exploded jetty:run-war   I'm using java 1.6. My deployment conta...
    Profile Photo
    last modified by julianc
  • Expose a web service with Camel

    Hello everyone !   I'm using the version "apache-servicemix-4.3.1-fuse-01-15" of Fuse ESB and I'm trying to do this little workflow : Consumer -> JAX-WS service -> Camel endpoint (let's say a bean to be si...
    Profile Photo
    last modified by manta7
  • A question related to the aggregator

    Greetings,   I will try to explain my use case, even if it isn't easy. I have a JMS queue containing object messages of the class A and B, having all a message header used as a correlation-id. Based on this corr...
    Profile Photo
    last modified by simplex-software
  • The "direct" component: how does it work ?

    Greetings,   Trying to figure out how does the direct component work. Reading the documentation it gives this example:   from("activemq:queue:order.in")     .to("bean:orderServer?method=val...
    Profile Photo
    last modified by simplex-software
  • The splitter - how does it work ?

    Greetings,   Looking at the splitter, I was thinking that it is recursive. I mean, given a route like the following:   from("...").split(body().tokenize("...")).streaming().unmarshal(new JaxbDataFormat(......
    Profile Photo
    last modified by simplex-software
  • Data format 'jaxb' could not be created

    Greetings,   I'm using Camel 2.8.0-fuse-04-01. I got the following RouteBuilder:       JaxbDataFormat jdb = new JaxbDataFormat();     jdb.setContextPath("com.unic.delimij.int...
    Profile Photo
    last modified by simplex-software
  • Unable to get moveFailed to work for File2 component

    Hi Guys,   I had a look at the documentation on http://camel.apache.org/file2.html   I tried the following endpoints to consume files   file:C: temp csv?move=done&moveFailed=error/-$.$   fi...
    Profile Photo
    last modified by mohithanda
  • A design question with files, aggregators, data bases, etc.

    Greetings,   I have the following case: different inter-related files come by FTP. These files are related in the sense that one may contain a record, say a Product, and another file may contain records concerni...
    Profile Photo
    last modified by simplex-software
  • Unmarshal JSON to XML using Spring DSL

    I would like to use Jettison to transform basic JSON messages into XML and then apply validation on the XML.  Using Spring DSL how do I get Jettison to parse the JSON into XML without trying to map it to POJO's.&...
    Profile Photo
    last modified by smalson
  • camel-csv ignore first row

    Hi Guys,   I am using the camel-csv component and I was wondering if I can ignore the first row of the csv while doing the unmarshalling.   First row being the csv headers.   Please advise.   R...
    Profile Photo
    last modified by mohithanda
  • JPA consumer doing constant polling

      Hi Guys,       I am trying to write a route which is triggered by a JMS message on a queue. It then polls the database using JPA endpoint, converts the row to an entity. Then I want to do some ...
    Profile Photo
    last modified by mohithanda
  • Can't convert HTTP Response with no Content-Type to String

    I have a case where I am doing an HTTP POST to a web server and the response is text but camel cannot convert the body to a string. Instead the conversion results in an empty string.   from("timer://foo") .to("...
    Profile Photo
    last modified by jamie3_james.archibald