You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by Chris76 <ch...@fkie.fraunhofer.de> on 2009/11/17 17:26:28 UTC

Multicast Transport Connector with Topics

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-tp26392907p26392907.html
Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.