I think I need to explain what I'm trying to do in more detail. I want to use ActiveMQ as a broker between two MQ series message queues. I can do this with JMS bridging in a master/slave configuration.
However, I saw that JMS bridging is being deprecated, so I was going to use camel routes instead, as was suggested to another user on the forums. The master/slave part using camel routes doesn't work like the JMS bridging. With JMS bridging only 1 server at a time is brokering the messages between the MQ queues. With the camel routes, both the master and the slave come up with live routes, so either one could be brokering messages between the queues. I can't use the ActiveMQ failover transport because I don't control the clients or the MQ servers. The only thing I can control is the ActiveMQ broker between the two MQ servers. The issue I am concerned about is setting up JMS bridging then having that deprecated in new versions of ActiveMQ and not being able to do the same things with camel routes. I really would like to use Camel routes because of the great power and flexibility of Camel. Sorry if I didn't make this clear before. I appreciate your help on this. I think ActiveMQ and Camel are some of the best pieces of software I have ever seen. Thanks to all who have worked on these products. James.Strachan wrote: > > 2008/12/3 Stephen J <[EMAIL PROTECTED]>: >> >> I wondered about that. How would I change my camel configuration to use >> the >> ActiveMQ master/slave? > > Use the ActiveMQ connection factory using the failover connection URL > to connect to the master then slave > failover:(tcp://primary:61616,tcp://secondary:61616)?randomize=false > > http://activemq.apache.org/failover-transport-reference.html > > -- > James > ------- > http://macstrac.blogspot.com/ > > Open Source Integration > http://fusesource.com/ > > -- View this message in context: http://www.nabble.com/EIPs-in-the-ActiveMQ-broker-and-clustering-tp12486255p20814038.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.
