Hello, I'm trying to retrieve a reference to RepositoryAdmin service like that:
public static RepositoryAdmin getRepositoryAdmin(BundleContext ctx){ServiceReference reference = ctx.getServiceReference(RepositoryAdmin.class.getName());if (reference != null){ return (RepositoryAdmin)ctx.getService(reference); } System.out.println("Reference null"); return null; }
but it always prints Reference null. What I'm doing wrong? BundleContext is received from Framework which is produced by FrameworkFactory with no config parameters.
Thanks --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

