I am just getting started with activemq. I was trying to get it going in code:
public class Launcher {
public static void main(String[] args) throws Exception{
BrokerService broker = new BrokerService();
broker.setUseJmx(true);
broker.addConnector("tcp://localhost:61616");
broker.start();
}
The jmx service doesn't appear to be working. I can't connect to JMX via
JConsole.
Ideas?
Thanks
phil
