2
votes
3answers
20 views
When should I use Import-Package and when should I use Require-Bundle?
OSGi allows for dependencies to be determined via Import-Package, which just wires up a single package (exported from any bundle), and Require-Bundle, which wires up to a specific named bundle's …
0
votes
2answers
16 views
eclipse library bundle - fails to export packages from some libraries
I've created a simple plugin project in eclipse 3.5 that just stores third-party libraries for the use by other bundles in an eclipse RCP application. Worked as expected: I edited the manifest, …
0
votes
2answers
16 views
With OSGI how does one pass parameters from a host to a embedded bundle.
In the end i will perhaps provide a helper so that the activator can import and export services and other types of meta data about the system.
By parameters i mean objects in general, perhaps via a …
1
vote
3answers
32 views
what is the OSGi bundle package structure?
i am new to OSGi standard. i want to know more about the structure of bundle package file.
find there is this OSGi-INF folder, the specification mentioned about l10n and permission, i wonder where …
4
votes
4answers
51 views
Service References in OSGi
Once an instance of an OSGi service is retrieved from the bundle context does it become invalidated when the service is stopped?
My initial tests show that the service instance can be used even …
0
votes
1answer
16 views
OSGi Bundle Repositories
I am empirically testing OSGi Bundles and their relationships for this I need lots of bundles.
Making these datasets is a difficult task. I already have Eclipse update (1700 Bundles) sites and Spring …
10
votes
4answers
159 views
Why is Sun inventing another module system when everyone has standardised on OSGi?
Sun is putting a lot of effort behind modularising the JDK in the form of Jigsaw, and insinuating that it should be the module format of choice for other Java developers as well. The only notable …
0
votes
4answers
57 views
osgi-like framework without the import/export restrictions?
I like OSGi, but the import/export restrictions and the lack of context class loader creates havoc when trying to use 3rd party libraries (e.g., some libraries try to find file.xml in META-INF, …
0
votes
2answers
15 views
Prioritizing OSGI service selection within a container when more than one implementator exist..
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 lookup a service implementing …
1
vote
2answers
26 views
OSGi unit testing without step that packages bundles…
I have checked a few testing solution for OSGI including PAX and had a quick look at the abstract TestCase within Spring DM but they both appear to require one to jar up and bundle associated bundles. …
2
votes
2answers
35 views
What is the underline theme in OSGi?
OSGi - dynamic modular system for Java. Ok, but what is the base line theme, why OSGi has been developed? What are the benifits of using OSGi? What is the main story of developing the OSGi? Why it is?
…
1
vote
3answers
19 views
I want to load my OSGI jar files from a database or other source.
Do i need to supply a custom ClassLoader ? Thinking out loud this does not appear to be the right approach because inside the classloader one does not know the required version.
0
votes
0answers
13 views
OSGI + SWT: How to split the View (GUI) in many bundles
I'm writing a graphic application, with java, swt and osgi. The bundle A holds the application main window. Depending on the selection of the user, a different user interface must be loaded. That is, …
7
votes
4answers
143 views
OSGi - How mature is this technology?
I have a requirement where I need to share some web resources (jsp, html, js, images, css etc.) across different Spring based Struts 2 applications. And seems like OSGi can be used to achieve this?
…
5
votes
2answers
122 views
Is there a Maven build for eclipselink that makes the OSGi bundles run in Felix and others?
The Eclipselink OSGi bundles seem have trouble working in some OSGi containers, notably Felix, because they fail to import packages (and that are exported by the system) that they actually require. …
