The OSGi framework is a module system and service platform for the Java programming language that implements a complete and dynamic component model.

learn more… | top users | synonyms

0
votes
0answers
9 views

How to add services to desktop Apache Felix application

I'm new to Apache Felix. I want to create simple Desktop application based on Apache Felix framework. I found this simple example how to create simple main method which starts the framework as ...
0
votes
0answers
7 views

Jersey resource not resolving in OSGI

I have been following this tutorial video which shows how to run a jersey server in OSGI. It is a short video and the process seems mostly very clear. What I'm not clear on is how exactly the ...
0
votes
1answer
21 views

OSGI cannot link to native method via JNI at runtime

I am trying to use a method from a DLL in a OSGI-bundle. The DLL gets loaded correctly in OSGI, but I still get an java unsatisfied link error, the native method is not found! When deployed ...
1
vote
0answers
22 views

How to autostart org.eclipse.gemini.blueprint.extender in a feature based eclipse rcp application?

I have an eclipse rcp application that uses gemini blueprint. It has two features and hence a feature based product. Some of our bundles depend on service that where created by the blueprint extender. ...
0
votes
1answer
25 views

How does bnd decide the version range to apply to an import package?

I have an issue where I am building a war using maven war plugin and overlaying it using bnd plugin as described in Adding OSGi metadata to existing projects without changing the packaging type. This ...
1
vote
2answers
22 views

Creating a plugin that will run arbitrary code at startup of a RCP Application

I've been trying (in vain) to create a RCP Application that runs some code when starting. This host RCP Application is not Eclipse, so I guess that's the reason my plugin extending ...
0
votes
1answer
20 views

Apache Felix & Web Start: loading bundles

I've read similar questions but I still don't have all the pieces together. Is it possible (and if yes how) to start an Apache Felix based OSGi desktop application via Java Web Start? My main ...
0
votes
1answer
18 views

Unable to auto-deploy bundle to Karaf

I am developing an OSGI-based application, which deploys to Karaf container. Karaf has an auto-deployment feature, whereby copying a bundle to its karaf/deploy directory should automatically deploy ...
1
vote
2answers
24 views

Using non-OSGi packages in Eclipse Plugins

I'm currently developing an Eclipse plugin. Its building and deploying is supported by Tycho and Maven. Now I would like to add Googles Guava v. 14 to the project as a dependency. On the Tychos wiki ...
0
votes
3answers
37 views

OSGi web application not running

I'm trying to figure out how to implement a web application bundle. In order to do that I created a small sample following the instructions in this tutorial. The war-file can be deployed and started ...
0
votes
1answer
14 views

Can't run OSGi wrapper bundle in Eclipse; .jar is building okay, but how do I also copy files into target/classes?

First of all, I know a number of questions have been asked before about wrapping existing Maven dependencies as OSGi bundles, but I have a problem which I don't see directly addressed in any of those ...
-1
votes
0answers
17 views

Documentation for OSGI and java web start

deploying OSGi project as Webstart using command line tools This is the one example I have been able to find on the internet for making a Java web start application while using OSGI and the command ...
0
votes
1answer
24 views

Vaadin/OSGi : ScssStylesheet class not found

I use vaadin and OSGi to create a modular application. After a long fight, I was able to deploy successfully the application. However, I can't load the style. When I try to access to ...
0
votes
1answer
21 views

Branding Apache Felix web console

I am trying to brand a Apache Felix web console, but I am not able to find resource for the same. As per Apache Felix website, Branding for the Web Console can be provided in two ways: By ...
0
votes
1answer
24 views

How to make JOGL OSGI bundles with native libraries loaded correctly?

I've been trying for days: http://forum.jogamp.org/JOGL-with-OSGi-td3773888.html#a4029139 This library has native dependencies embedded in jars. ...
0
votes
2answers
32 views

Force OSGi service be reloaded

Assume I have 2 OSGi services. One of them is memory cache of DB records. Another service is set of CRUD operations on these DB records. During modification I would like to rebuild existing cache. How ...
0
votes
1answer
36 views

Using Camel-hdfs in a karaf bundle

I am trying to implement an camel route to send files in a HDFS server with an OSGI bundle, using java language with no blue print, but i can't make it work due tu hdfs scheme not being found while ...
0
votes
0answers
35 views

Dynamic Reporting Module

I am contemplating about the design of the system depending on the requirements in hand around Reporting functionality. Stated below in point wise form and it includes calling one module(app) from ...
0
votes
2answers
29 views

How to ensure eclipse plugin has required bundles available?

I'm just starting to develop a new eclipse plugin where I want a web application server running in Eclipse. I found a nice blog, OSGi as a Web Application Server, that describes how to do this. The ...
1
vote
1answer
40 views

How to build desktop applications with Apache Karaf/OSGi?

Well im into building OSGi application for a while, but i can't really find some tutorials which show the way to build Desktop Application ( in any languages ) with OSGi/Karaf. I want to use karaf ...
1
vote
1answer
19 views

Cannot start osgi container (equinox) within eclipse

I've installed Eclipse Juno Service Release 2. I'm trying to learn OSGi using the Equinox container within eclipse. However, when I try to start Equinox from the command prompt using the following ...
-1
votes
0answers
28 views

how to start osgi normally from command line? [closed]

I am developing a Java application using the osgi framework. When I start running it from eclipse, everything works great. But when I export all into jars and try to start from command-line, it ...
0
votes
1answer
18 views

Are there any good BDD frameworks for Pax Exam? [closed]

I am trying to set up an environment to test our OSGi bundles using Pax Exam. We would like to integrate a BDD framework into this. The aim is to go beyond simple unit tests and to test the ...
1
vote
2answers
29 views

Osgi commandline install multiple plugins simultaneously

Is it possible to simultaneously load all the plugins available in a directory in osgi commandline? path/to/bin/java -jar org.eclipse.osgi_3.6.1.R36x_v20100806 -console -clean This brought up the ...
0
votes
2answers
23 views

Eclipse: how to export a folder in a plugin

I have a plugin containing a folder with files the plugin uses. I have noticed the folder is not exported in the plugin jar during its export. I guess there has to be some configuration I am missing ...
0
votes
3answers
67 views

How Apache Karaf sorts bundles to install and start?

I have defined four bundles: bundle 1 : export package x version 1 bundle 2 : import package x ver [1,2] and export package y;y uses x bundle 3 : export package x version 2 bundle 4 : import ...
1
vote
1answer
21 views

How do you debug annotation injectors when they just appear null?

I am currently working with CQ5/AEM, and we have an @Reference annotation that seems to act in a similar fashion to an injector annotation. Our problem was that we had a misconfiguration in our POM ...
1
vote
1answer
25 views

Freemarker : OSGI Bundle Exception

I am very new to OSGI. I am trying to add a new library, FreeMarker to an existing application which uses Spring 3. We are using Equinox. Below are the changes I made, Added Freemarker dependency in ...
0
votes
1answer
49 views

Eclipse: How to retrieve a resource from a bundle

I am using this code to retrieve a folder from a bundle URL url = Platform.getBundle("myBundle").getEntry("myFolder"); File fileTmp = null; try { fileTmp = new ...
1
vote
1answer
45 views

How to handle stateful OSGi services to maintain session state across bundle updates?

We have a scenario with a webapp implemented as a number of OSGi bundles. We want to do bundle updates to transparently deploy bugfixes etc to the running system. Assuming an update cycle with refresh ...
0
votes
1answer
49 views

osgi blueprint how to read resource file in bundle

I use osgi and blueprint, i search how to read file in my bundle? Such as : mybundle file.json OSGI-INF/blueprint/blueprint.xml WEB-INF * I want read file.json in myservice.
0
votes
0answers
61 views

How to provide the same object as a OSGi declarative service to its consumers?

I have a scenario where I need the same object exposed as a Declarative Service in several bundles in an OSGi application. To be more specific, there is class exposed as a Declaravice Service ...
0
votes
1answer
26 views

osgi blueprint catch event update

i want to execute script when my bundle is update, uninstall, or new. I use actualy destroy-method and init-method but i don't now if my bundle has just "stop" or "remove". <bean id="plugin" ...
0
votes
2answers
46 views

OSGi how to install a bundle from a remote machine?

I have a bundle: <groupId>com.helloworld</groupId> <artifactId>Helloworld</artifactId> <version>1.0.0-SNAPSHOT</version> Previously, the bundle and OSGi ...
-1
votes
0answers
20 views

Sling Event Listening Code not working

I would like to have practical knowledge on Sling Eventing so i was trying to write the code. I have written a code but my sling eventing is not working. I can see my bundle active in osgi felix ...
0
votes
1answer
31 views

Changing HttpService port using ConfigurationAdmin in Apache Felix

I am using Apache Felix HTTP Service Jetty 2.2.0 in my project. Based on the documentation I wrote the following code to change the default service port. ConfigurationAdmin configAdmin = // get ...
0
votes
1answer
24 views

Felix log level regarding ServiceEvent and BundleEvent [SOLVED]

Every time Felix starts a bundle, I get logging output on the lines of: BundleEvent STARTED BundleEvent RESOLVED ServiceEvent REGISTERED The log level is debug, and it doesn't come from any felix ...
0
votes
1answer
45 views

Windows tool to check for used files (by Java OSGi process)

I'm looking for a tool that'll give me information about file operations (e.g. open/close/read/write, how many bytes, how many time waited), filtered by process and that'll allow me to have a file ...
0
votes
2answers
36 views

Can I inject proxies in front of Blueprint services published by other bundles?

We are using Karaf and a number of OSGI Blueprint services to implement a system. Is it possible to make a "BundleListener" type of bundle that, when present in the OSGI container, decorates our ...
0
votes
1answer
40 views

ActiveMQ with Apache Karaf 2.3.1

I have ActiveMQ 5.8.0 and Karaf 2.3.1 running separately. What I did in Karaf was: (have all other: spring, cxf, camel already installed) features:addUrl ...
2
votes
4answers
54 views

How to use servlet with osgi

I want to create and deploy a web service to OSGi container. For example, publish the service to the address: http://localhost:8080/testservice. The service generate HTML response in a servlet. ...
2
votes
2answers
68 views

Possibility to intercept OSGi service resolving

I have rather big set of services registered with registerService. For simplicity let's assume they are lookup by some property name. So pair of invocation is straightforward (I use pseudocode for ...
1
vote
1answer
72 views

Using modularization in Android

The objective is to be able to develop modules / plugins (apks) to a main application. I've googled and found that there is the use of intents through broadcast receivers ...
0
votes
1answer
26 views

Dynamism of services when using Aries blueprint

I'm building a caching system in my OSGI application where my initial thought was, ok when a service is registered I want to apply caching to, I just proxy that service and register the proxy with a ...
1
vote
2answers
73 views

How to troubleshoot java.lang.NoSuchMethodError?

I know that a java.lang.NoSuchMethodError means that the version of a class used for compiling is different from the version used at runtime. Usually, when I see this issue, I start the app.server in ...
1
vote
0answers
45 views

Does the new Google Play Developer Program Policies forbid the usage of OSGi? [closed]

I was wondering if the usage of OSGi is forbidden with the new addition to the Google Play Developer Program Policies: An app downloaded from Google Play may not modify, replace or update its ...
2
votes
0answers
73 views

Any way to set up IntelliJ IDEA to honor OSGi exports/imports for dependencies?

IntelliJ IDEA 11/12 user, here. We have a Maven/OSGi multi-module project set up in which module1 depends on module2. module2 exports packages with MANIFEST only. When coding in module1, is there ...
0
votes
1answer
43 views

Android SLF4J: NoClassDefFoundError android.util.Log

I am porting an existing OSGi/Felix/iPOJO app from a windows over to Android. The app is using SLF4J. I have slf4j-android deployed as a bundle. However I am getting a ...
2
votes
2answers
77 views

Tycho: Dependencies to other plugins of the project cannot be resolved when building plugins separately

I have a Eclipse RCP application that builds with Maven using the Tycho plugin. There is a master POM that contains all the plugins and features as modules. If I install the master POM with Maven, ...
0
votes
0answers
8 views

How to upgrade the Virgo container using an application deployed in Virgo

I am going to work on an application that i would like to run in an OSGi container like Virgo. Virgo's core supplies many of the dependencies that i'm interested in and also i can add third party ...

1 2 3 4 5 42