Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two bundles: bundle A and bundle B which is configured as a fragment of bundle A using: Fragment-Host:

Whenever I install bundle B it fails to start (INSTALLED) and therefore to attach itseld to bundle A.

At this point when I check bundle A's status I see that it still doesn't recognize bundle B as its fragment.

If I do refresh bundle A it solves the problem - bundle B switches to RESOLVED and is able to attach itself to bundle A, bundle A recognizes bundle B as its fragment and everything is working as expected.

My question is how this refresh can be avoided, i.e. as soon as bundle B is installed it should attach itself to its host which is already ACTIVE.

Thank you.

share|improve this question

1 Answer

up vote 3 down vote accepted

You cannot do that without a refresh, and it's in the OSGI specs too - to properly attach a fragment bundle, a transition from INSTALLED to RESOLVED of the host bundle is necessary. See section 3.14 of the 4.3 OSGi Core Specification.

share|improve this answer
I thought so :( the thing is that even a container restart doesn't seem to resolve it only a refresh on the specific bundle host. Is that should be the case? – Joly Sep 2 '11 at 12:12
AFAIK yes, because the wiring between resolved packages/bundles is persisted. You will need to do this by hand, but you can do it programatically. – Tassos Bassoukos Sep 2 '11 at 12:39
Can you provide a simple code example for that please? – Joly Sep 2 '11 at 13:16
Not example code, but for OSGi 4.3 and later frameworks look at the FrameworkWiring and BundleWiring interfaces, and section 7.6 of the 4.3 OSGi Specification. For pre-4.3 frameworks look into the PackageAdmin service. – Tassos Bassoukos Sep 2 '11 at 14:02
Thanks. Getting the host bundle through PackageAdmin and updating it seem to have solved it – Joly Sep 9 '11 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.