Make ActiveMQ Discoverable - (for Version 5.8)


/ Published in: XML
Save to your folder(s)

see http://activemq.apache.org/discovery-transport-reference.html


Copy this code and paste it in your HTML
  1. <transportConnectors>
  2. <!-- DOS protection, limit concurrent connections to 1000 and frame size to 100MB -->
  3. <!-- ################################## -->
  4. <!-- ### Make ActiveMQ Discoverable ### -->
  5. <!-- ################################## -->
  6. <!-- ### file:${activemq.conf}/conf/activemq.xml -->
  7. <!-- ### Laurence added discoveryUri attribute to next tag -->
  8. <!-- ### discoveryUri="multicast://default" -->
  9. <!-- ### see: beans/broker/transportConnectors/transportConnector[@name='openwire'] -->
  10. <transportConnector name="openwire" discoveryUri="multicast://default" uri="tcp://0.0.0.0:61616?maximumConnections=1000&amp;wireformat.maxFrameSize=104857600"/>
  11. <transportConnector name="amqp" uri="amqp://0.0.0.0:5672?maximumConnections=1000&amp;wireformat.maxFrameSize=104857600"/>
  12. </transportConnectors>

URL: http://activemq.apache.org/discovery-transport-reference.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.