Tagged Questions
The declarative-services tag has no wiki summary.
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 ...
3
votes
2answers
1k views
How do you communicate between eclipse declarative services and Views (ContentProviders)
Say you have an eclipse plugin with various views, these views should display data from some OSGi bundle that pushes data to the Views. Rather than have every view communicate with the OSGi bundle, I ...
1
vote
0answers
75 views
How to set different ECF distribution providers in the Component Definition of a Declarative Service?
I have to test the performance of all the remote service providers present in ECF (or at least, the common ones: generic, r-osgi, SOAP and REST), so changing from one provider to another in an easy ...
1
vote
1answer
130 views
OSGi services - best practice
I start loving OSGi services more and more and want to realize a lot more of my components as services. Now I'm looking for best-practice, especially for UI components.
For Listener-relations I use ...
1
vote
0answers
53 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
202 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
1answer
139 views
Osgi Declarative service conditional binding
I have this scenario, I have three declarative services that provide the same interface (say a reader interface and I have readerimpl1-database- readerimpl2-flat file- readerimpl3-memory). I want to ...
1
vote
2answers
227 views
OSGi: Is it valid to register services within a declarative service component activation method?
This is a duplicate of another question, but copying from the other one:
I've run into an issue with Felix SCR where I get the message:
ServiceFactory.getService() resulted in a cycle
The reason ...
1
vote
1answer
388 views
OSGi Declarative Services vs. ManagedService for configuring service?
I just recently stumbled upon the fact that Declarative Services in OSGi can set the configuration of a component to required so that the component receives it upon activation, removing the gap ...
1
vote
2answers
363 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
123 views
OSGi and Component Management
I have a dynamic application that uses OSGi to load modular functionality at runtime. OSGi bundles contain the modular functionality and the application loads the bundles when they are needed. This ...
0
votes
0answers
26 views
How can DS components be searched through Nexus?
I want to dynamically deploy declarative service bundles to a number of osgi containers. I'd like to be able able to search nexus for the correct bundle to deploy given only the DS component name. ...
0
votes
1answer
84 views
get list of services implementations with OSGi declarative services
I have a very simple example of declarative services. I'm following this tutorial http://www.eclipsezone.com/eclipse/forums/t97690.html?start=0. Every thing is working as expected. However, I cannot ...
0
votes
2answers
136 views
OSGi Declarative Service - obtain ServiceReference in bind method
I'm using Eclipse 3.7 with Eclipse Gemini JPA / DBAccess. I implemented a declarative ServiceComponent which references EntityManagerBuilderFactory. The bind method looks like this:
public void ...
0
votes
2answers
58 views
Is there a way in OSGi to make sure only one things has access to a service at a time?
I have an interface that defines a device in a system. The devices are intented to be used by only one entity at a time. I would like to register each device as an OSGi service so others can access ...
0
votes
1answer
171 views
OSGi DS: Omit unbind method with Felix SCR @Reference annotation
OSGi declarative services are explicitly allowed to have a bind method without a matching unbind method for a reference because "Once the component configuration is deactivated, SCR must discard all ...
0
votes
2answers
223 views
OSGi Declarative Services - NullPointer Exception
I have a problem with my Declarative Services. I have 2 bundles, one is a server provider and another the user interface that consumes the service.
On server side, the implementation is:
public ...
0
votes
1answer
102 views
OSGi DS: Why are exceptions thrown by binding methods only logged?
Why is it spec to only log an exception thrown from a binding method?
I would expect that the component would not activate in this case.
How should exceptions thrown from binding methods be handled ...
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
244 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: ...