* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
Dictionary<String, Object> props = new Hashtable<String, Object>();
props.put(Constants.SERVICE_PID, "org.apache.aries.jmx.test.ServiceB");
plainRegistration = context.registerService(InterfaceB.class.getName(), new B(), props);
Dictionary<String, Object> fprops = new Hashtable<String, Object>();
fprops.put(Constants.SERVICE_PID, "jmx.test.B.factory");
msfRegistration = context.registerService(ManagedServiceFactory.class.getName(), new MSF(), fprops);
}