Hello
Is it possible to configure multiple subscribers running in different JVMs or IP addresses? I tested configuration of several amqp-inbound-adapters connected to same rabbit queue with no success.
Here is my configuration:

Code:
  <int-amqp:inbound-channel-adapter channel="channel1"
                                    queue-names="some.queue"
                                    message-converter="jsonMessageConverter"/>

  <bean id="handler1" class="some.Handler"/>

  <int:service-activator input-channel="channel1"
                         ref="handler1"/>

  <int:channel id="channel1"/>
My goal is to run this subscriber from various JVMs running on different IPs. Is this right way or is better to configure exchange with queue per subscriber (subscribers will be started/stopped during publisher execution).
Or could show me another right way how to solve this?
Thank You in advance Standa