Re: AMQP Bridge

2013-08-12 Thread Robert Davies
As I said - have a look at https://github.com/rajdavies/activemq-anywhere-example - it uses JMS over AMQP 1.0 with Camel On 12 Aug 2013, at 16:26, RJPercival wrote: > Unfortunately, a quick search reveals that Camel does not yet support AMQP > 1.0 (https://issues.apache.org/jira/browse/CAMEL-

Re: AMQP Bridge

2013-08-12 Thread James Strachan
That issue is about the AMQP camel component; the activemq camel component can connect to ActiveMQ through any ActiveMQ client supporting URL On 12 August 2013 16:26, RJPercival wrote: > Unfortunately, a quick search reveals that Camel does not yet support AMQP > 1.0 (https://issues.apache.org/ji

Re: AMQP Bridge

2013-08-12 Thread Christian Posta
You should be able to use the qpid-jms libs which do support the 1.0 protocol: http://qpid.apache.org/components/qpid-jms/index.html On Mon, Aug 12, 2013 at 8:26 AM, RJPercival wrote: > Unfortunately, a quick search reveals that Camel does not yet support AMQP > 1.0 (https://issues.apache.org/j

Re: AMQP Bridge

2013-08-12 Thread RJPercival
Unfortunately, a quick search reveals that Camel does not yet support AMQP 1.0 (https://issues.apache.org/jira/browse/CAMEL-5891). Presumably this makes establishing a bridge over AMQP 1.0 extremely difficult? -- View this message in context: http://activemq.2283324.n4.nabble.com/AMQP-Bridge-tp

Re: AMQP Bridge

2013-08-12 Thread Robert Davies
You can look at https://github.com/rajdavies/activemq-anywhere-example for examples of setting up the Camel routes On 12 Aug 2013, at 15:58, RJPercival wrote: > No, the remote broker isn't guaranteed to be ActiveMQ so the bridge has to be > over AMQP 1.0 rather than OpenWire. I'll look into usi

Re: AMQP Bridge

2013-08-12 Thread Christian Posta
Sorry, to be more clear, the network of brokers only works for openwire-based protocols. Any other sort of bridging should be done with Camel. Cheers On Mon, Aug 12, 2013 at 7:58 AM, RJPercival wrote: > No, the remote broker isn't guaranteed to be ActiveMQ so the bridge has to > be > over AMQP

Re: AMQP Bridge

2013-08-12 Thread RJPercival
No, the remote broker isn't guaranteed to be ActiveMQ so the bridge has to be over AMQP 1.0 rather than OpenWire. I'll look into using Camel instead then, thanks. -- View this message in context: http://activemq.2283324.n4.nabble.com/AMQP-Bridge-tp4670281p4670286.html Sent from the ActiveMQ - U

Re: AMQP Bridge

2013-08-12 Thread RJPercival
The remote broker in my test environment is also ActiveMQ so yes, it speaks AMQP 1.0. In production, it's not guaranteed to be ActiveMQ but is guaranteed to speak AMQP 1.0 (hence the requirement to use AMQP instead of OpenWire for the bridge). There is a single warning in the log of the remote bro

Re: AMQP Bridge

2013-08-12 Thread Christian Posta
The networking bridge will expect speak to openwire (or an openwire-compatible protocol... eg, openwire over HTTP) to another ActiveMQ broker on the other side. Is this your case? If not, try using Apache Camel to bridge the two. On Mon, Aug 12, 2013 at 2:01 AM, RJPercival wrote: > I've been a

Re: AMQP Bridge

2013-08-12 Thread Gordon Sim
On 08/12/2013 11:01 AM, Rob Percival wrote: I've been attempting to configure a static bridge between two brokers (I want any messages received on a local broker to immediately be forwarded to a remote broker if it's available). If I use OpenWire, i.e. a "static:(tcp://1.2.3.4:61616)" URL, it wor