Hi Miguel, Miguel schrieb: > so, what should I do to force that my bundles that implement > ManagedService (which I am able to configure using another bundle > configuration with the service of the config admin) appear in the web > console?
Basically you have to options (see the Metatype Service specification for the exact details): Have your ManagedService implement the MetaTypeProvider interface (and register as a service) or provide a Metatype descriptor file in the OSGI-INF/metatype folder in your bundle. (Note, that the MetaTypeProvider objects of a bundle are ignored if the bundle has descriptors in OSGI-INF/metatype). Finally, ensure you have the Metatype service implementation running, such that the web console is able to call it. When the Metatype service can provide information about your ManagedService, the configuration admin panel is able to display the configuration. Regards Felix --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

