Hi, So I'm tinkering around a bit to port TomEE to use ActiveMQ 6 instead of ActiveMQ 5.10, mostly so that we can do JMS 2.0 support.
The original code is based around the original ActiveMQResourceAdapter. I started porting the code over to use the new one, however I've run into a hitch. If I leverage your resource adapter, I get an error: java.lang.IllegalArgumentException: must provide either TransportType or DiscoveryGroupAddress and DiscoveryGroupPort for ActiveMQ ResourceAdapter Connection Factory at org.apache.activemq.ra.ActiveMQResourceAdapter.createActiveMQConnectionFactory(ActiveMQResourceAdapter.java:1987) at org.apache.activemq.ra.ActiveMQResourceAdapter.setup(ActiveMQResourceAdapter.java:1788) at org.apache.activemq.ra.ActiveMQResourceAdapter.start(ActiveMQResourceAdapter.java:261) However, there are no tests to show how to properly configure this, and I can't find anything about using the resource adapter in the HornetQ docs. For what I'm trying to do right now, the InVM connector is enough. How would I configure the resource adapter to use the InVM connector? I'll aim to deal with the TCP based connectors later. Thanks, John
