I am trying to configure remote queues with for local webservice in Jboss 7.
Basically I need to have 2 instance of jboss 7 with Instance 1 producing and consuming messages to and from instance 2.
I have the following configuration for hornetQ in jboss 6.4
Instance 1:
-----------
Connector - Standalone-full.xml:
++++
org.hornetq.core.remoting.impl.netty.NettyConnectorFactory
++++
Acceptor - Standalone-full.xml:
++++
org.hornetq.core.remoting.impl.netty.NettyAcceptorFactory
++++
Connection-Factory - Standalone-full.xml:
++++
++++
Queue JNDI reference - standalone-full.xml:
++++
++++
Webservice Client Jboss-web.xml:
++++
jms/jmsConnectionFactory
javax.jms.ConnectionFactory
java:jboss/exported/jms/RemoteConnectionFactory
queue/requestQueue
javax.jms.Queue
java:/queue/WebServiceQueue
queue/responseQueue
javax.jms.Queue
java:/queue/WebServiceReplyQueue
++++
Instance 2:
------------
Queue JNDI reference - standalone-full.xml
++++
++++
Need a similar setup of jboss 7. I could see the jms bridge adapter configuration but its for forwarding messages from local queue to remote queue.