Dear all,
I am trying to set up ActiveMQ 4.1.2 with a Multicast Transport Connector on
an Ubuntu Linux system:
Configuration:  
       <transportConnector name="multicast"
uri="multicast://224.2.2.111:61619"/>

While the Message Broker starts up perfectly it is ignoring any client
massages to the multicast address:
Client Code:        
        String url = "multicast://224.2.2.111:61619";
        ActiveMQConnectionFactory factory = new
ActiveMQConnectionFactory(url);
        connection = factory.createConnection();
        session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
        topic = session.createTopic("topictest.messages");

The session creation command causes the client to send a Multicast Package
to the Broker (for subscription to the topic). However, it is ignored by the
Broker and the client waits forever.

Does anybody have an idea what is going wrong, here?

Best regards and thanks in advance
Chris
-- 
View this message in context: 
http://old.nabble.com/Multicast-Transport-Connector-with-Topics-tp26392919p26392919.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Reply via email to