Hi,
it's me again
I try to get a Preferences Service, but my Servicetracker is not able to get one. I have used the following snippet, which works quite well in my equinox framework.
Quote:
ServiceTracker st = new ServiceTracker(context, "org.osgi.service.prefs.PreferencesService", null);
st.open();
PreferencesService ps = (PreferencesService) st.getService();
...doing things with the Preferences Service like creating Nodes etc.
Are you able to reproduce a similar behaviour?