JMX jconsole -- where is my MBean?
I'm missing something here in 5.0b2's JMX. I've put together a rudimentary standard MBean together, and want to view the data from jconsole (on the MBeans tab). Here's the code I used below to register the MBean.
String domain = "UserDomain";
String mbeanClassName = "iccs.support.utilities.corba.ConnectionManagementInfo";
MBeanServer mbs = MBeanServerFactory.createMBeanServer();
ObjectName mbeanObjectName = new ObjectName(domain + ":type=" + mbeanClassName);
mbs.createMBean(mbeanClassName, mbeanObjectName);
This compiles and runs without error. I can connect to the process with jconsole successfully, but nothing shows up on the tab. I'm finding little documentation to help me out with this very simple case. Am I missing something?

