Habari ActiveMQ Client - GUIDemo application

Demo Instructions:

* start Apache ActiveMQ

* click on Connect to connect to the message broker
* click on Create to start a session
* click on Send to send a message to the selected destination
* click on Subscribe to receive messages

If you choose the SSL communication adapter,
* the demo requires OpenSSL libraries
* enter a server address with the protocol 'stomp+ssl'

To use administration messages:

* enable JMX in the message broker configuration file (activemq.xml) by setting createConnector to true for the managementContext:

        <!-- Use the following to configure how ActiveMQ is exposed in JMX -->
        <managementContext>
            <managementContext createConnector="true"/>
        </managementContext>

* enable the commandAgent by uncommenting it

    <!-- Uncomment to create a command agent to respond to message based admin commands on the ActiveMQ.Agent topic -->
    <commandAgent xmlns="http://activemq.apache.org/schema/core" brokerUrl="vm://localhost" username="${activemq.username}" password="${activemq.password}"/>
