Hello,
I have implemented an OSGI service which can be configured via
configruation Admin.
My class implement ManagedService :
public class Configurator implements ManagedService {
@Override
public void updated(Dictionary props) throws ConfigurationException {
...
and I able to configure getting the configuration admin reference and
after that, invoking update(properties) method of the configuration
admin.
That works perfectly but when I use the apache web console, I have no
configuration in the site:
http://127.0.0.1/system/console/configMgr
could anybody help me? should I do anything else to get the
configuration via webconsole?
Thank you in advance,
Miguel