I am creating an embedded activemq instance in order to test creating/deleting topics via JMX. The code looks a bit like the following. broker.connectorPort was my attempt to set the JMX port but it does not work.

String connectString="vm://localhost?broker.persistence=false&broker.useJmx=true&broker.connectorPort=2011"

ActiveMQConnectionFactory activeMQConnectionFactory = new ActiveMQConnectionFactory();

activeMQConnectionFactory.setBrokerURL(connectString);

ActiveMQConnection activeMQConnection = (ActiveMQConnection) activeMQConnectionFactory.createConnection();
activeMQConnection.start();

When configuring using activemq.xml the following xml works. Im not sure how to translate this to brokerURL.

<managementContext>
        <managementContext connectorPort="2011" createConnector="true"/>
</managementContext>
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Solved by creating broker manually..

    BrokerService broker = new BrokerService();
    broker.setUseJmx(true);
    broker.getManagementContext().setConnectorPort(9999);
    broker.start();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.