Hi Marcel,
>Could you please show me the implementation of the component so I can take
a
>look at the signature of the methods you use?
Thanks for the hint, here are the method signatures in MonitorComponent:
public class MonitorConsumer implements EventHandler, ManagedService {
public void handleEvent(Event event) {...}
public void updated(Dictionary properties) throws
ConfigurationException {...}
public void start(*BundleContext bundleContext*) {...}
public void stop() {...}
}
The culprit was the BundleContext reference in start().
Thanks,
Marian