When I configure a Queue like:

           <address name="feedControlR">
                <*multicast*/>
            </address>

and try to connect with a org.springframework.jms.annotation.JmsListener

@JmsListener(id="feedControlListener", destination = "feedControlR",
containerFactory = "feedControlContainerFactory")

I get the following error:
Open of resource:(JmsConsumerInfo: {
ID:38d9a94e-c252-46bc-a341-0b17f2320579:1:1:1, destination = feedControlR })
failed: *Address feedControlR is not configured for queue support
*[condition = amqp:illegal-state]

if I change the config to:

           <address name="feedControlR">
                <*anycast*/>
            </address>

It works?

How do I connect to a multicast queue?



--
Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Reply via email to