Log in to follow, share, and participate in this community.
Thread Need help in Exec
Need help in ExecI 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...
Thread camel-example-osgi-2.9.2 in JBoss AS 7.1.1 fails
camel-example-osgi-2.9.2 in JBoss AS 7.1.1 failsHello, 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....
Thread camel-core as jboss 7 module leads to NoClassDefFoundError
camel-core as jboss 7 module leads to NoClassDefFoundErrorselect 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=...
question on camel-cdi componentHello 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...
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...
Thread Separate XML tags in differents files with splitter
Separate XML tags in differents files with splitterHi 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...
Thread looking for blueprint xml file for http to http routing
looking for blueprint xml file for http to http routinghi, 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...
Thread Route with same routeId killing previous route
Route with same routeId killing previous routeI 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...
Thread Problem with jetty & javamail running camel under tomcat
Problem with jetty & javamail running camel under tomcatI'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...
Expose a web service with CamelHello 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...
A question related to the aggregatorGreetings, 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...
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...
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(......
Data format 'jaxb' could not be createdGreetings, 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...
Thread Unable to get moveFailed to work for File2 component
Unable to get moveFailed to work for File2 componentHi 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...
Thread A design question with files, aggregators, data bases, etc.
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...
Unmarshal JSON to XML using Spring DSLI 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.&...
camel-csv ignore first rowHi 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...
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 ...
Thread Can't convert HTTP Response with no Content-Type to String
Can't convert HTTP Response with no Content-Type to StringI 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("...