container « osgi « Java Enterprise Q&A





1. What OSGi Container Do You Recommend?    stackoverflow.com

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 ...

2. How can I share non-OSGi libraries between bundles in an OSGi container?    stackoverflow.com

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 ...

3. RMI client in a OSGi container    stackoverflow.com

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 ...

4. Prioritizing OSGI service selection within a container when more than one implementator exist    stackoverflow.com

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 ...

5. Best way to shutdown an OSGi Container (specifically equinox)    stackoverflow.com

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 ...

6. How to set min/max heap size for equinox osgi container    stackoverflow.com

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, ...

7. MVC web container for OSGI?    stackoverflow.com

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 ...

8. Does the Eclipse Communication Framework (ECF) require an OSGI container or can it run w/out?    stackoverflow.com

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 ...

9. Cannot Run WAR From Root Context in Karaf 2.2.0 OSGi Container    stackoverflow.com

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 ...





10. Create a Web Application Bundle (WAB) for a OSGI container that does NOT contain jar of all dependencies with maven-bundle-plugin    stackoverflow.com

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 ...

11. how to detect if running in osgi container    stackoverflow.com

I have an OSGi bundle that can also run in plain Java process. I need to be able to tell if the bundle was loaded in an OSGi system or not. ...

12. What is the standard behaviour in OSGI for the container to pick a package that is exported by multiple bundles?    stackoverflow.com

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. ...

13. Looking for code example to refresh a bundle during/right after the OSGi container loads    stackoverflow.com

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?

14. Felix OSGi container seems to ignore "org.osgi.framework.system.packages.extra" Property    forums.netbeans.org

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 ...

15. Where is the Embedded OSGI Container    forums.netbeans.org