Yes, it looks a lot easier!

Can I send SOAP messages with Camel? 

You bet!

Can the messages be encrypted with SSL?

You can encrypt the payload using the triple DES or AES ciphers. 

http://camel.apache.org/xmlsecurity-dataformat.html

Or you can use ActiveMQ's ssl connector. Keep in mind that you'll still use
a JMS provider, like ActiveMQ, to do the actual messaging. In the case of
ActiveMQ, you can embed Camel routes within the broker. 

I also need to use it asynchronously, to perform some database updates (I
need to duplicate a database, that will be updated every 15 minutes). Do I
still use Camel in this case, or ActiveMQ?

Camel has a handful of DB-related components. Again, you'll still use
ActiveMQ as your JMS provider. 

Cheers,

Linuca.


Joe Fernandez wrote:
> 
> You may want to consider using Camel to implement the request/reply
> messaging pattern in combination with a content based router to route
> messages to their respective systems. 
> 
> http://camel.apache.org/request-reply.html
> http://camel.apache.org/content-based-router.html
> 
> Camel makes it a lot easier to implement these messaging patterns and
> helps maintain a a clean separation between your application and the
> underlying JMS provider. 
> 
> Joe
> http://www.ttmsolutions.com 
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/temporary-or-durable-queue--tp25826944p25874630.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Reply via email to