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?

[802 byte] By [vrmerlin] at [2007-9-30 12:27:13]
# 1
Hi,I am having the same problem. Did you get to solve this? I would greatly appreciate if you could help me. Thanks!-Praneetha
praneejay at 2007-7-4 15:55:59 > top of Java-index,Administration Tools,Sun Connection...
# 2
It seems your MBean server has no RMI connector or protocol adaptor attached.If you don't want the trouble to create an RMI connector use the JVM platform MBean server:MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
Nefelibata at 2007-7-4 15:55:59 > top of Java-index,Administration Tools,Sun Connection...