Tagged Questions
4
votes
1answer
479 views
Adding a ServiceListener with Spring DM
I am wondering if it possible to do the equivalent of
public void start(BundleContext context)
{
String filter = "filter for my specific service";
context.addServiceListener(new ...
1
vote
2answers
64 views
Spring OSGI service reference interfaces must be explicitly imported by consuming bundle?
I'm getting acquainted with Spring OSGI and Blueprint, but am having "classpath" difficulties (like many newbies).
I have two OSGI bundles - one that defines various beans (using Blueprint, not ...
1
vote
2answers
108 views
OSGi list, what are those headers?
I'm using Fuse ESB (ServiceMix) and I've been searching all over in the hope to find a better explanation of the various headers when running the command 'osgi:list'. Namely the two columns I want to ...
1
vote
2answers
107 views
OSGi : Is there a 'best way' to handle service and registers?
I am starting a project with OSGi and I am facing a very important choice while defining the way I will handle service registration etc...
If I am not mistaken, I have three choices :
Use manual ...
0
votes
1answer
64 views
how to use a spring bean inside a osgi bundle
i have an application where i have to use spring to load bean based on some business conditions inside a osgi bundle . this beans are not meant for export and are used for caluclation inisde my bundle ...
0
votes
0answers
35 views
How to find out dependencies of Spring-DM-managed services
Let's say there is an OSGi service managed by Spring-DM. If this service has dependency to other services, and those dependencies are not available yet, this service would just remain dormant without ...