Tagged Questions

1
vote
2answers
120 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
128 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
64 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 ...
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
0answers
105 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
39 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
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 ...