Tagged Questions

4
votes
1answer
483 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
125 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
129 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
115 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
27 views

what is the difference between <osgi:reference> and <osgi:service> in spring DM

what is the difference between <osgi:reference> and <osgi:service> in the xml config file of spring DM.
0
votes
0answers
37 views

Issue referecning Spring-aop aspects in OSGI environment

I have used spring aop to log method level information in a osgi bundle, with the follwoing expression - com.* (to make sure it logs for all methods under multiple bundles in the application) unit ...
0
votes
1answer
198 views

Spring framework/Eclipse RCP integration with Blueprint Gemini

I am trying to integrate Spring framework into my Eclipse RCP application. I was not able to find relevant documentation on how to integrate Blueprint Gemini into my RCP application. Do I just add ...
0
votes
1answer
72 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
1answer
64 views

OSGi using SpringDM on Virgo, running from Eclipse, MAC vs Windows development

This question is more of type "has anyone experienced something similar before and if so, what was the issue?". At work I use an iMac to do my daily programming. After some initial (and still ...
0
votes
0answers
106 views

OSGi Spring Context initialization issue

I got following error when initializing context. ERROR ContextLoader: Context initialization failed java.lang.IllegalArgumentException: bundle context should be set before refreshing the application ...
0
votes
0answers
40 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 ...
0
votes
1answer
58 views

Deploy a bundlet and get the dependent bundles from spring EBR

I have a WAR file that was built using grails framework and OSGi plugin. When I try to deploy it in Eclipse Virgo it fails because the related dependencies are not yet deployed. Is there a way to tell ...
0
votes
1answer
213 views

How could I get BundleContext in Spring DM?

I am newly on Spring DM and I would like to access Bundlecontext. My problem is that I have a bundle with Activator, but it does not have xml config file. I cannot touch this bundle, then I need to ...