Hi, Can someone tell me if the ActiveMQ Resource Adapter is supposed to communicate with an AMQP Broker?
I saw that there is AMQP code in the RA and actually AMQP connection strings are correctly recognized/parsed, but the RA doesn't want to send anything to the broker. Here is what I am trying to do: - there is an AMQP 1.0 broker (for testing, it is ActiveMQ now, but at the end it should be Azure Service Bus); - we have an application running in JBoss, which uses MDBs; - we need a resource adapter that can speak AMQP 1.0. I tried to use ActiveMQ RA 5.13.3. It establishes TCP connection, but doesn't send any data and after 30 seconds an exception is thrown. All this happens on calling createQueueSession(false, Session.AUTO_ACKNOWLEDGE). I use the same activemq-jms-ds.xml as for ActiveMQ with OpenWire; only in ra.xml I use amqp://guest:guest@localhost:5672 for ServiceUrl. Maybe something in the configuration is not OK? Thanks!