up vote 4 down vote favorite
share [g+] share [fb]

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 useful.

link|improve this question

48% accept rate
feedback

3 Answers

Even if you are not using any Enterprise Integration Patterns (yet) - Camel is great at integrating messaging into your application while hiding all of the middleware APIs while letting you easily switch between all the various different middleware technologies usually by just changing one or two strings.

e.g. see these links for more detail

There is a POJO Messaging Example that walks you through using Camel purely as a way to integrate messaging into your POJOs

link|improve this answer
feedback

It does make sense to use Camel for async calls, especially because it can handle callbacks cleanly. For example:

template.asyncCallback("activemq:queue:longTasks", request, callback);

Where a callback is a org.apache.camel.spi.Synchronization object that handles both responses as well as failure conditions.

link|improve this answer
feedback

To add to the other answers: Camel also provides many very useful utils for common programming tasks.

I haven't used it in 8 months, but I'll be using it on my next project...sprint 0 next week.

Perhaps, I too will have more questions on the latest of camel soon.

Happy coding.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.