For the purposes of building a service framework that works quietly behind the scenes in the JVM, logically separated from whatever the primary application running is, it seems like OSGi really ...
I came across this question when trying to share the Struts packages among multiple bundles inside an OSGi container. I wanted to avoid both duplicating dependencies inside the bundles and ...
I need to expose a RMI-based system in an OSGi bundle. The RMI client "bundle" is a jar which I converted into a OSGi bundle using the bnd tool (I don't ...
I am playing with OSGI and have a few bundles. Bundle A and B both contain a registered service which implement a single interface. The third bundle C includes code to ...
I'm looking for a best practice on shutting down an OSGi container.
Currently we are using a small launcher app which calls EclipseStarter.startup() and installs some core bundles. After that the launcher ...
does anyone know how to set the max heap size when starting equinox? I start the container from the command line as follows:
java -jar org.eclipse.osgi_3.5.2.jar -console -Xmx1024M -Xms512M -XX:[MaxPermSize]=256M
However, ...
As I have no knowledge of servlets+jsp's, is there a web-container that does not deal with servlets for OSGI?
Preferably for an MVC web framework of some sort. For example microsoft has ...
I recently heard a podcast from the Eclipse people and there was interesting attributes/ abilities discussed about ECF.
I have not been able to find a definitive article in the online documentation ...
I have been struggling to get an web application to run in the root application context in Karaf 2.2.0 (it works fine in Karaf 2.1.4). I have been able to ...
I want to deploy a java webapp (with web.xml and everything), packaged in any way (war, jar, I do not care) on an OSGI container (like Karaf).
There are two important ...
I was just wondering how does the container select which package to load a class if the same package is exported multiple times by different bundles.
Given the following what is true. ...
I am looking for a way to problematically refresh a bundle with a certain symbolic name after/during the OSGi container loads. Can someone please provide a code example?
I want to use some OSGi bundles for my Netbeans Platform based application. One of the bundles is using the packages "sun.misc" and "sun.reflect". So i need a provider for these ...