Hello all, I'm using felix as my OSGi framework to make my already created application modular. Basically, we are using the OSGi system to plugin in module at boot and make them available to the UI. We are using wicket as our web framework. To load the felix system, I'm using the 4.2 generic method of OSGi to get a FrameworkFactory and then a framework instance.
Since the Wicket is actively using the class searching mechanism instead of using class forname directly, it is possible for my to also search into the OSGi system. Presently, I implemented a bundle with a manifest containing a Dynamic import statement on * in order to give access to all class to the wicket framework. For me, it would be greatly easier to take the system bundle (the framework instance) and ask it to resolve in the exportable package of the system. Is there a way to configure the framework to work like the dynamic import statement? Since there is no real manifest, how can I specify this? Thanks a lot in advance. Marc-Andre

