Tagged Questions
Apache Camel is a powerful open source integration framework based on known Enterprise Integration Patterns with powerful Bean Integration
53
votes
1answer
2k views
How to route Rest request from a local service to a remote one using Camel
I am trying to route a rest request from a cxf rest service to another. I have had a look at http://camel.apache.org/cxfrs.html which helped understand part of the process. I have a classCastException ...
16
votes
5answers
6k views
When to use Spring Integration vs. Camel?
As a seasoned Spring user I was assuming that Spring Integration would make the most sense in a recent project requiring some (JMS) messaging capabilities (more details). After some days working with ...
9
votes
2answers
3k views
Java Messaging : Difference between ActiveMQ, Mule, ServiceMix and Camel
I am new to Messaging and want to know the difference between ActiveMQ, Mule, ServiceMix and Camel
Anyone knows how each of these product is different?
Thanks in advance !
EDIT: Also would like to ...
8
votes
3answers
2k views
what exactly is Apache Camel?
I don't understand what exactly camel is:
If you could explain in baby intro to camel 101 words, what exactly is it? how does it interact with an application written in java for example, is it ...
8
votes
7answers
3k views
Apache Camel and other ESB products
Hey,
If we have Apache Camel why to use other solutions like Apache ServiceMix and Mule?
Is there something Apache Camel can't do comparing to these products?
When to use Mule/ServiceMix and when to ...
8
votes
2answers
2k views
Distributed ActiveMQ with Camel
I am in the process of learning ActiveMQ and Camel, with the goal to create a little prototype system that works something like this:
(big)
When an order is placed in the Orders system, a message ...
5
votes
2answers
250 views
Are there known problems using Scala with Apache Camel?
I know that there is a supported Scala DSL for Camel. Apart from that
Is it realistic to replace Java (the language) completely by Scala for a Camel based project?
Which kind of known problems are ...
4
votes
1answer
160 views
Spring Integration Images for use in Visio
Does anyone know where some Spring style integration images can be found for use in Visio - just a stencil or where one could possible download the images used in the Spring Integration designer GUI ...
4
votes
1answer
285 views
Quartz CronTriggers in Akka Actors using or not using Camel?
I have a Db of Quartz CronTriggers. I want to port this entire system to an Akka based backend I am architecting currently. I was looking at and thinking about ways this can be done.
For instance, ...
4
votes
4answers
1k views
Apache Camel multipart HTTP post (file upload)
How can I do multipart file uploads using the Apache Camel HTTP component ?
4
votes
1answer
5k views
Apache Camel Spring configuration problem - Unable to locate Spring NamespaceHandler for XML schema namespace [http://camel.apache.org/schema/spring]
I've posted an excerpt from my spring.xml file and the stack trace I'm getting.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
4
votes
3answers
670 views
Apache Camel for Asynchronous Calls
Does it make sense to use Apache Camel for Asynchronous requests? Or should I use simple MoM using a JMS server.
There are no Enterprise Integration Patterns that I'll require.
Any help would be ...
3
votes
1answer
69 views
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 each of these queues as an Endpoint. Each component uses the same ...
3
votes
1answer
77 views
How JMS Relates to Service Buses
I'm trying to wrap my brain around JMS and have been reading up on some very helpful sources and examples. I'm now trying to see the "big picture" here and put all the theory behind JMS into a ...
3
votes
1answer
121 views
Apache Camel smtp component hangs the whole bus if mailserver is down
I have what I think is a very common scenario. I have an invoice system that is managed via Apache Camel. When something goes wrong I would like to have an email alert sent to the administrator.
...
3
votes
1answer
263 views
Retrying messages at some point in the future (ActiveMQ)
I'm working on a system in ActiveMQ where I would really prefer not to lose messages. My problem is that retrying messages is causing my consumers to block (instead of working on messages they could ...
3
votes
1answer
258 views
Apache Camel pull data from ftp incrementally & periodically
I am very new to Apache camel and I am exploring how to create a rout which pulls data from ftp for instance each 15 minutes and pulls only new or updated files, so if some files were downloaded early ...
3
votes
1answer
606 views
Exposure of Camel routes as REST services under Web container
I have Camel route that I would like to expose as a REST Web Service. Application is deployed on Web container (Jetty/Tomcat) and Spring is used as well for DI and other "infrastructural" things.
I ...
3
votes
2answers
309 views
How JMX objects are mapped into SNMP OIDs?
I have a standalone Java application written with Apache Camel which I want to monitor via SNMP. I think Camel uses Spring's JMX (@ManagedAttribute, @ManagedResource etc) and I can see various ...
3
votes
2answers
992 views
Apache Camel ESB for C# and Java EDA
We are looking at integrating some of our coarse grained business Services using an Event Driven Architecture (EDA) and the server side of these Services (REST) are implemented in both Java and .NET ...
3
votes
1answer
358 views
How to start Camel routes on slave ActiveMQ only when slave becomes active in failover?
I have a durable consumer to a remote JMS queue in embedded Camel routing. Is it possible to have this kind of routing with master-slave configuration? Now it seems that the Camel routes are started ...
2
votes
1answer
28 views
How do I write a route that goes from one message queue to another with outbound request inbetween?
So the problem that I am facing right now requires us to do the following:
We receive a message as an XML on a message queue
We do some basic parsing on the XML
We send a request with some ...
2
votes
1answer
43 views
using apache camel, smooks and flatpack
I am writing a route using camel and smooks, with the producer as a JPA repository that produces a List of JPA Objects, which I need to send to an sftp server as a fixed width file.
Here is what I ...
2
votes
3answers
49 views
How to unit test a route with a bean which will access DB?
Here DB is just an example. It means something can't be prepared in unit test environment.
Consider the route below:
DBBean dbBean = new DBBean();
...
2
votes
3answers
47 views
Auto expiration of messages in Camel
I have a system implementing Camel and ActiveMQ for communication between some servers. I would like to know if there is a way to automatically expire and clear-out messages sent to a queue after X ...
2
votes
1answer
161 views
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 row using Bindy and queues it in activemq.
The problem is files can be pretty large (a ...
2
votes
2answers
101 views
Camel - extend Java DSL?
I've got a repeating pattern in my routes - a certain Processor needs the same 3 Headers set every time I call it, so I've got the following code in my routes about 10+ times:
.whatever()
...
2
votes
2answers
82 views
ProducerTemplate is there supposed to be only one instance
We are using Spring and Camel in our web application. In one of our controllers we are using the ProducerTemplate to send a message on a route and now I want to add another controller that will send ...
2
votes
5answers
127 views
Apache Camel - Triggering a task on startup to run only once
I am working on a Java project using Camel & Spring. We would like to trigger an initialize method on a singleton bean after Spring finished doing its thing and Camel has finished building all ...
2
votes
2answers
188 views
What are the advantages and disadvantages of defining Camel routes in spring xml?
Currently I try to get deeper into Apache Camel. As you know there are at least two ways to describe the routes: the Java DSL and the XML-configuration.
The developers of Camel recommend to use the ...
2
votes
1answer
229 views
Can we implement a REST service using Akka and Camel Integration?
I was reading about Akka and Camel integration. I cam across Camel for the first time and it sounds wonderful. Can we build a REST service using Akka and Camel plainly? Any useful pointers in that ...
2
votes
1answer
150 views
apache camel and jackson
I'm trying out apache-camel, and I've set up a basic route that calls an http service via http4 component, transforms the result via unmarshal().json(JsonLibrary.Jackson), and then prints out part of ...
2
votes
2answers
120 views
Approach to handle long-lived processes with Camel
I'm working on PoC for small process engine based on Camel. Requirements are to have ability to execute set of consequence steps and each of them could potentially take hours to execute. Asynchronous ...
2
votes
2answers
65 views
Routing by operation
is there any way to route a ServiceMix message by operation specified in that message?
I've tried googling it but was unable to find any way to complete this simple task, maybe I am doing it wrong in ...
2
votes
1answer
775 views
Apache Camel http to http routing (Is it possible?)
I am starting now with Camel. I have seen the http4 component for http clients and the jetty component for http servers.
I have seen several examples that use one or the other.
I would like to know ...
2
votes
2answers
223 views
Apache Camel scripting problem
I have a very strange problem with Apache ActiveMQ with Camel - I tried the examples with javascript and groovy, but they both produce error "Failed to install route: Failed to create route... because ...
2
votes
1answer
451 views
jaxws and camel route within servicemix
I would like to do something like this:
<jaxws:endpoint id="AbcEsbHTTPEndpoint"
implementor="com.abc.esb.ABCWSServiceImpl"
address="/ABCWSServiceService"
...
2
votes
1answer
237 views
Passing uniform webservices through Camel
I'm contemplating using Camel for my project and would like to know if it's feasable or camel is not a good choice.
I need multiple clients running same exact application to exchange information via ...
2
votes
1answer
404 views
How do I implement a pass-through JAX-RS proxy using Apache Camel?
This is using Camel 2.5.0
The route is pretty simple. The starting point is a jetty://.../web/service/path and the end of the route is an http://real-webservice-host/web/service/path. The problem ...
2
votes
1answer
93 views
Suitable architecture for rewrite with integration + migration scenario
Recently we started a project at the company I work at to restructure and rewrite our systems landscape and rescue the future of our children.
We have 3-4 legacy systems which absolutely can not be ...
2
votes
4answers
297 views
Is there a Solr-Camel component?
I've been looking for this for a while and haven't found anything yet. Is there any reason to that ? I would like to proxy a solr server with the camel integration framework and I understand it must ...
2
votes
1answer
435 views
Why do I get a NullpointerException when invoking the CXF-RS endpoint of a Camel route?
My app is an java webapp (WAR) that uses Apache Camel and (among others) CXF-RS and its corresponding Camel component as an implementation of JAX-RS to provide ReSTful services to the outside world.
...
2
votes
1answer
1k views
What's the best Apache Camel routes visual designer?
So, who could advise some good Apache Camel routes visual designer?
Would like to know also if there's some really good Apache Camel routes visualizer (saw some maven2 camel visualizer, but it ...
2
votes
2answers
333 views
ActiveMQ: Simple topic based cluster
Well, lets say I'm building ActiveMQ based chat application. It's pretty simple. Having only one QUEUE.IN and one TOPIC.OUT. All messages are simply routed right away from QUEUE.IN to TOPIC.OUT. ...
2
votes
1answer
268 views
ActiveMQ & Camel - How to create dependency in routing paths
I have a message routing to implement, which has routes that vary according to the message content. Some strands of the route are dependent on other.
If for example I have Data_A which has Task_A and ...
2
votes
1answer
3k views
Apache Camel with ActiveMQ clustering
I'm trying to determine my options for clustering my ServiceMix 3.3.1/Camel 2.1/AMQ 5.3 application. I'm performing high volume message processing and I need to cluster for high availability and ...
2
votes
1answer
368 views
Using Camel 2.1 with Grails 1.2.1 - Classloading problem
I'm trying to define a Camel context in my Grails application.
resource.groovy:
xmlns camel: 'http://camel.apache.org/schema/spring'
camel {
camelContext(id:'camelContext') {
}
}
Results ...
2
votes
4answers
1k views
Dynamic throtlling off an ActiveMQ message queue with Camel
I am an ActiveMQ / Camel noob with a specific scenario in mind, I wonder firstly if it is possible and secondly whether someone might provide a little direction.
Basically I need to perform dynamic ...
2
votes
1answer
296 views
Apache Camel question on routing via javaDSL
When using routing in a Camel context via RouteBuilder, What is the practical difference between:
1) from(A).to(B).to(C);
2) from(A).to(B); from(B).to(C)
1
vote
1answer
18 views
Camel routing between EJBs
I just need confirmation/clarification on my understanding of some Apache Camel basics. If I have a backend that consists of many EJBs, and I want to use a service bus like Camel to wire them together ...