views:

140

answers:

3

I've got an ActiveMQ ESB that I am using between several C# assemblies across a couple different systems. I need to start receiving notifications being sent out by a new system from it's HornetQ ESB. As far as I can tell the HornetQ is pre-2.0.0GA.

I'd like to just use Camel to set up routing between the HornetQ ESB and my ActiveMQ ESB, but so far we haven't been able to get even that far. I'm not sure how much flexibility I've got to change the HornetQ configuration (say to add support for StompConnect or something like that).

Does anyone of a viable option for getting access to the HornetQ ESB through ActiveMQ (or directly from C# if necessary)?

A: 

You should be able to connect camel to HornetQ using the Camel JMS Component - and route that to the Camel ActiveMQ Component directly. You can use Camel inside the ActiveMQ broker to do this - see Enterprise Integration Patterns in ActiveMQ

Rob Davies
A: 

The Camel plugin ended up working. We had tried this originally, but had some other configuration issues that prevented it from working (we hadn't configured HornetQ to allow remote consumers). Thanks for the help.

N Banek