Top "Apache-camel" questions

Apache Camel is an open source integration framework that focuses on quick and easy integration of systems consuming or producing data.

Apache Camel: errorHandler vs onException?

What's the difference between: <camel:errorHandler id="deadLetterErrorHandler" type="DeadLetterChannel" deadLetterUri="log:dead"> <camel:camelContext errorHandlerRef="deadLetterErrorHandler"&…

java exception-handling error-handling apache-camel
Exception using Jackson JSON library with camel

I am having trouble using the Jackson JSON library with camel. The exception is: FailedToCreateRouteException: Failed to create route... because …

json jackson apache-camel
Testing Camel with MockEndpoints

I've got a series of "pipelined" components that all communicate through ActiveMQ message queues. Each component uses Camel to treat …

java unit-testing messaging apache-camel
Best strategy for processing large CSV files in Apache Camel

I'd like to develop a route that polls a directory containing CSV files, and for every file it unmarshals each …

apache-camel
Camel Routes and Endpoints

I've been poring over the Apache Camel docs trying to get a concrete understanding of two of its most basic …

java routes apache-camel endpoint
Could not refresh JMS Connection for destination 'jmsinqueue' - retrying in 5000 ms

Goal to connect to Hornteq and send a message to a queue and route it to a topic or queue …

spring apache-camel hornetq spring-jms wildfly
How to define exception to be thrown through ref in Apache Camel

Have to throw an exception in my camel route defined in XML. Found throwException statement available from Camel 2.3 which looks …

apache-camel
Soap request Message part was not recognized

When I send a request to my webservice (build with apache camel and running on apache karaf) I always get &…

web-services soap wsdl apache-camel apache-karaf
unit testing functions with Apache Camel Exchange as parameter

I am doing java camel development and I want to unit test(junit4) a bunch of functions with Exchange being …

unit-testing apache-camel junit4 easymock