Hello.
I am using felix ConfigurationAdmin & SCR;
question: how can I combine ConfigurationAdmin & component self-update?
for example, SCR component has a ui located on the screen (x,y);
this is pushed from ConfigurationAdmin to the component via
SCR.activate() & SCR.modified();
now user moves a ui to a new (x,y); per osgi spec, ConfigurationAdmin
does not differentiate on the update request source;
hence, Configuration.update(properties) (trying to persist the new
(x,y))
if called from configuration target component itself,
will create a recursion, which it does;
and Configuration.update() /* with no properties*/ does not create a
recursion,
but does not persist the configuration either;
what am I missing? :-)
Thank you,
Andrei.