I'm tring to access the OSGIFramework from my Stateless and I got this error:

Caused by: javax.management.InstanceNotFoundException: 
jboss.osgi:service=Framework is not registered.
        at 
org.jboss.mx.server.registry.BasicMBeanRegistry.get(BasicMBeanRegistry.java:529)
        at 
org.jboss.mx.server.MBeanServerImpl.getMBeanInfo(MBeanServerImpl.java:675)
        at org.jboss.mx.util.MBeanProxyExt.init(MBeanProxyExt.java:407)
        at org.jboss.mx.util.MBeanProxyExt.(MBeanProxyExt.java:99)
        at org.jboss.mx.util.MBeanProxyExt.create(MBeanProxyExt.java:394)
        at org.jboss.mx.util.MBeanProxyExt.create(MBeanProxyExt.java:349)
        at 
org.jboss.injection.DependsFieldInjector.inject(DependsFieldInjector.java:66)

@Stateless
public class TestStatelessBean implements TestStatelessRemote
{
        @Depends("jboss.osgi:service=Framework")
        OSGiFramework framework;
        
        @Override
        public void test() throws NamingException 
        {
                System.out.println(framework.getSystemBundle());
        }

}


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4222678#4222678

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4222678
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to