Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
477 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
57 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
104 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
0answers
50 views

Spring Dynamic Modules and Netbeans Platform

Has anyone integrated Spring Dynamic Modules (or Eclipse Gemini Blueprint) with Netbeans Platform? I cannot find any information on this. I was thinking about potential use of Spring Services within ...
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
0answers
13 views

Spring DM Test Framework without Maven?

I would like make the integration tests of our OSGi-Services (based on Spring DM) inside an OSGi-container, using the OSGi-testing framework "Spring DM test framework". Unfortunately all the examples ...
0
votes
0answers
25 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
152 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
59 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
91 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
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 ...
0
votes
1answer
51 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
200 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 ...