0
votes
3answers
42 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 …
1
vote
1answer
22 views
When to use ServiceTracker vs ServiceReference
I am just starting with OSGI programming and have come across two ways to listener for services being activated.
The first way, from an EclipseRCP book, uses ServiceReference:
St …
0
votes
1answer
16 views
How to restrict program resources + rights in JVM/OSGi?
I want to create a website where people can solve programming tasks and eventually upload their solution (in any JVM-language) in order to verify it and share it with others.
I fi …
3
votes
6answers
138 views
Java: Dynamically Load Multiple Versions of Same Class
I've looked all around and I haven't been able to figure out how to accomplish this.
What I'd like to be able to do is to load set of classes, probably all in the same folder. All …
1
vote
2answers
67 views
Can Eclipse 3.5 discover all bundles in the plugins dir?
Simple usecase: assemble an Eclipse product using simple scripts, just dumping bundles into the plugins dir.
This used to work with 3.3 - with 3.5 it's broken: my application does …
1
vote
4answers
103 views
Using Guice with OSGi
I have a project that I am trying to convert to OSGi. However, this project has been built with Guice as its dependency injection manager. It's a large project with Guice interwove …
5
votes
1answer
95 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 …
0
votes
0answers
15 views
Federated Identity Management
I'm looking for a way to pull user (eg. inetOrgPerson) information in a federated way. For the most part, this information will come from LDAP but could come from secondary system …
0
votes
1answer
129 views
JPA Entity (in multiple persistence-unit) in OSGi (Spring DM) Environnement is confusing me.
Hi,
I'm a bit confused about a strange behavior of my JPA's related objects.
I have three bundle :
The User bundle does contain some user-related objects, but mainly the User o …
6
votes
2answers
137 views
Java plugin framework choice
We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in".
After reading …
1
vote
2answers
66 views
How do I deploy a webapp into Apache Felix?
What bundles do I need to install? At least, this would have to be a servlet container / web server such as Jetty, but will the basic org.apache.felix.http.jetty bundle do, or is t …
1
vote
1answer
76 views
OSGi: What are the differences between Apache Felix and Apache Karaf?
Apache Karaf is a sub project of Apache Felix. It is defined as "a lightweight OSGi container".
I don't understand when should I use the heavyweight and when to use the lightweigh …
0
votes
1answer
66 views
Achieving Eclipse-like OSGi launcher
Hello All,
I am building an OSGi application and need to create an Eclipse-like OSGi application launcher.
For those who do not know, when an OSGi application is run through Ecli …
0
votes
1answer
53 views
Where should I put shared testing utilities in a multi-module Maven project?
I probably sholdn't obsess about this too much, but my project has a very structured layout that I have become very fond of. Having that much structure has actually proven to be us …
0
votes
1answer
66 views
How can I combine WAR packaging and OSGi bundle creation in Maven?
I want to deploy one of my OSGi bundles with a war package structure so it is recognized as a web application by Struts. I use Maven, so I get WAR packaging built-in and I have the …
