Tagged Questions

3
votes
1answer
182 views

What is the proper way of disabling an OSGi service at service start?

I have created an OSGi bundle with an exposed (declarative) service. If I, when activate is called, notice that something is amiss such that I can not provide the service, I need to prevent it from ...
1
vote
0answers
54 views

How should I declare a has-a dependency via OSGi declarative services?

My OSGi application uses a whiteboard pattern to register listeners for specific state changes. I use org.apache.felix.scr.annotations to declare my services and components instead of hand-coding the ...
1
vote
3answers
208 views

Using OSGi declarative services in the context of a JUnit test

I'm trying to figure out how to implement multi-bundle integration test in OSGi using JUnit. With integration test, I mean instantiating a subset of the bundles to automatically validate ...
1
vote
2answers
366 views

How to construct an OSGi service with dependencies and publish via DS

My sample classes: public class MyModel implements Model { : : } public class SingleModelProvider implements ModelProvider { public SingleModelProvider(Model providedModel, List actions) ...
0
votes
2answers
53 views

Eclipse/Equinox: starting all installed plugins?

I have an Eclipse product build using features. All of the services are registered via Declarative Services. As I understand it, the bundle must be started for the Service Component Runtime to pick up ...
0
votes
2answers
89 views

Can Declarative Services be used in a Thread?

I have the following code as an OSGi module. When it runs, I get the message that the logger has been set: UdpListener > setStoreLog: 'com.mine.logger.internal.storeindb.StoreLog@1c6f579' But ...
0
votes
3answers
246 views

JAVA OSGi: InstantiationException with Declarative Services

I'm new to OSGi and am building a first DS-implementation. Everything is coded according to "the book" but when running I get this error: java.lang.InstantiationException: ...