Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
1k views

Trouble understanding the whole OSGi web eco system

I am pretty new to the whole Java and OSGi world and I have trouble understanding the eco system of a OSGi web application. To be more precise I am at the moment trying to understand how all the ...
9
votes
4answers
1k views

Scala in OSGI container?

How can I code my bundle in Scala and then deploy it into OSGI container? Do I compile it into "java" first or can i deploy scala straight into OSGI and use some kind of bundles to recognize it? Any ...
7
votes
3answers
407 views

Using an OSGi Bundle from a Java Web Application in Tomcat

I am trying to invoke a method of an OSGi bundle from a Java Web Application. Both are supposed to run on Tomcat 7. I already wrote a normal Java application that invokes methods from the OSGi ...
7
votes
3answers
331 views

Launching OSGi from IDEA

I develop scala application using IntelliJ IDEA. I'd like my application modules to be OSGi bundles. In Eclipse it is possible to create a project which is both scala project and plug-in project. ...
5
votes
3answers
1k views

Best way to shutdown an OSGi Container (specifically equinox)

I'm looking for a best practice on shutting down an OSGi container. Currently we are using a small launcher app which calls EclipseStarter.startup() and installs some core bundles. After that the ...
5
votes
6answers
478 views

Service References in OSGi

Once an instance of an OSGi service is retrieved from the bundle context does it become invalidated when the service is stopped? My initial tests show that the service instance can be used even ...
5
votes
4answers
3k views

How to change value of 'Read timeout' of Eclipse's Update Manager?

How to change value of 'Read timeout' of Eclipse's Update Manager? I have slow internet connection and I cannot install any plugin, because Eclipse's Update manager throws me exception: Transfer ...
4
votes
3answers
518 views

Eclipse OSGI config: relative paths and/or @config.dir-like substitutions?

In my RCP app, I would like to point a property (osgi.java.profile) to a file, and would prefer using paths relative to my installation and config dir. Is there a definitive spec on what kind of ...
4
votes
1answer
449 views

In Equinox Is it possible to to mark an OSGi bundle as started from its containing feature's p2.inf?

I have an Eclipse feature which includes several bundles. I want to tell p2 to mark one of those bundles as started when the feature is installed. This is possible using the bundles own ...
4
votes
1answer
1k views

Better handling of Thread Context ClassLoader in OSGi

I've been using OSGi for a while now and I have various solutions to the problems I encountered. I wanted to revisit one of these and see if people had come up with different solutions. One of the ...
4
votes
3answers
3k views

How to configure Log4J when deploying an OSGi app with the Equinox Servle Bridge to Tomcat?

When deploying my OSGi web application using the equinox servlet bridge i get the following: log4j:WARN No appenders could be found for logger ...
3
votes
1answer
80 views

Equinox and OSGI bundles

I am trying to understand how Equinox works by looking through its underlying bundles. Can someone explain in general terms (or point out a good resource to understand) the relationship/difference ...
3
votes
2answers
287 views

Issue with updating eclipse

When I select "Help->Check for Updates" in eclipse, I get the following error message at the bottom of the window. From this message "Only one of the following can be installed at once: " it appears I ...
3
votes
1answer
486 views

Eclipse p2 : Difference between category.xml and site.xml

p2 repository creation ant tasks like eclipse.publish.featuresAndBundles seem to take a site.xml or category.xml file which specifies the category information. I see that the contents of site.xml and ...
3
votes
1answer
1k views

Integrating Equinox OSGi into Apache Tomcat web app

Is it possible to introduce osgi-equinox into existing java Apache Tomcat project? From my understanding OSGI must run inside some kind of "container". How would I integrate it? I am also using ...
3
votes
5answers
1k views

Starting OSGi bundle

I try to run OSGi plug in in Eclipse. It is empty bundle, but eclipse always send me errors There are my console messages http://pastebin.com/dqQfpQhd What is wrong?
3
votes
3answers
1k views

Can Eclipse 3.5 discover all bundles in the plugins dir?

Simple usecase: assemble an Eclipse product using simple scripts, just dumping bundles into the plugins dir. This used to work with 3.3 - with 3.5 it's broken: my application doesn't start as the app ...
3
votes
2answers
346 views

OSGi and legacy libraries

I've been looking into OSGi for a while and I'm wondering about the best way to deal with "legacy" libraries (that are released as plain JARs, not as OSGi bundles). What do you think is the best way ...
3
votes
3answers
493 views

How do I compute equinox/solstice moments?

What algorithms or formulas are available for computing the equinoxes and solstices? I found one of these a few years ago and implemented it, but the precision was not great: the time of day seemed ...
2
votes
2answers
140 views

OSGI classes not visible even though the required JARs are in Bundle-classpath

We are using an Equinox based OSGI framework to run Multiple bundles. Our bundles have dependent JARs in the Bundle-classpath and the dependent JARs are packaged along with the rest of the classes and ...
2
votes
1answer
48 views

Running an Eclipse plugin/update mirror

I'm trying to run a full Eclipse mirror for all the plugins / updates our development team might want or need. This is because our network is impeded by a WebSense proxy filter, which very often ...
2
votes
2answers
134 views

osgi bundle lifecycle question

I try to learn how osgi works. I've written my first hello-world bundle which gives some console output when the start-method of the bundle activator class is executed. Now, I've read about the lazy ...
2
votes
1answer
92 views

nullPointerException when trying to programaticaly install a bundle in Equinox

I'm trying to do a simple demo where I start the Equinox Framework and then load a tutorial bundle that was created (via the tutorial). I keep getting NullPointerExceptions here is the stack trace... ...
2
votes
1answer
265 views

A fragment bundle cannot be started: initial@reference:file:com.springsource.org.apache.jasper-6.0.18.jar

I am developing a sping dynamic modules on Equinox. However when I run Equinox I have several bundles in RESOLVED state. One of these is com.springsource.org.apache.jasper-6.0.18.jar. Then, when I try ...
2
votes
0answers
264 views

Datanucleus + OSGi (Equinox) gives error No suitable driver found for jdbc:mysql://localhost:3306/jdoosgitest

I am trying to use datanucleus jdo implementation inside the osgi environment but I am constantly getting error : No suitable driver found for jdbc:mysql://localhost:3306/jdoosgitest I have been ...
2
votes
2answers
417 views

Best practice to provide EntityManager in OSGI applications

I have read a lot of other questions at stackoverflow concerning my problem but I didn’t find a proper solution. I development an OSGI Application (Equinox) and use JPA (EclipseLink). Now I ask for ...
2
votes
1answer
943 views

JAX-WS with Equinox OSGi

We have created a web service using JAX-WS and ProSyst OSGi. Accessing the service with the following code works fine in a standalone Java application as well as in the ProSyst framework. ...
2
votes
2answers
563 views

Eclipse RCP: Target platform - Eclipse vs. Equinox?

I'm just starting with OSGi and Eclipse RCP. Could someone explain to me the difference between "Eclipse" and "Equinox" as the target platform, when creating a new eclipse plugin project? I still ...
2
votes
1answer
77 views

In Equinox is it possible to for one feature/bundle to obsolete another?

I have a Eclipse-based project (the Scala IDE for Eclipse) which has recently moved to a new home. I want to change the various feature ids, Bundle-SymbolicNames etc. to reflect the move (ie. so that ...
2
votes
3answers
323 views

How to use OSGi from java application

I'm new whith OSGi, but it is interesting. Is it possible to interact between osgi bundles and java application? If it is possible, how? thanks! The context is that I have a big Java SE ...
2
votes
1answer
908 views

Is JSF available as an OSGi (Equinox) bundle?

There is a bundle for JSP/JSTL, which can be deployed on Equinox OSGi Framework and can be used by other bundles then: org.eclipse.equinox.jsp.jstl_1.0.0.jar Is there also a bundle for JSF, so i ...
2
votes
3answers
574 views

Can't find service because OSGi bundle isn't activated

I'm having a problem discovering services that are provided by some OSGi bundles that are not being activated. Let me describe the situation: Bundle A defines interface X Bundles B, C, and D ...
2
votes
2answers
415 views

Equinox p2 for an arbitrary OSGi application?

I am designing a software system which I think I am going to implement on an OSGi platform. It is going to be a software system running on self-service terminals. OSGi idea suits well for my demands ...
2
votes
2answers
1k views

How to setup bundle development environment (Eclipse Equinox Maven)

I'am trying to setup eclipse environment to develop bundles (With maven-bundle-plugin-bnd) and run & debug that bundles equinox from eclipse I created sample bundles with org.apache.felix ...
2
votes
2answers
1k views

Including additional resources with OSGi bundles

I'm working on an OSGi bundle which implements a service as a wrapper around a native executable. That is, the service runs the executable with ProcessBuilder, feeds it some data, and retrieves the ...
2
votes
2answers
754 views

Configure Equinox to modify the management of the “local bundle cache”

Relating to a previous question, how let OSGi to reuse your configuration via Config Admin, I am still trying to solve this problem in the Equinox Framework. Pavol Juhos wrote: Equinox Config ...
2
votes
2answers
3k views

Equinox (OSGi) and JPA/Hibernate - Finding Entities

I am trying to use Hibernate/Spring in an OSGi (Equinox) environment. It works great if I explicitly point it to the Entity classes in the Persistence.xml: ...
2
votes
3answers
4k views

OSGI Declarative Services (DS): What is a good way of using service component instances

I am just getting started with OSGI and Declarative Services (DS) using Equinox and Eclipse PDE. I have 2 Bundles, A and B. Bundle A exposes a component which is consumed by Bundle B. Both bundles ...
2
votes
8answers
6k views

Persistence.xml and OSGi (Equinox)

I am currently testing out using OSGi. I am running this through Eclipse. I want to have my DAO layer as part of an OSGi solution, but my first stumbling block is this error: Jun 29, 2009 6:12:37 ...
2
votes
2answers
147 views

dynamic plug-ins management /Updated

I mean if one plugin will [download and] copy other plugin in apropriate folder or make a link file, can it dynamically integrate it with platform without restart? So, it looks like it is possible ...
1
vote
0answers
30 views

Exporting a bundle with dependencies with another bundles

I have this OSGI configuration: /configurations config.ini somebundle.properties /plugins bundleA bundleB osgi-3.4.2-R34x_v2008826-1230.jar ...
1
vote
1answer
46 views

Generating p2 repository

I want to build an RCP Application with Maven and Tycho but then I should make my Target Platform wich is only a folder in the file-system to a p2 repository. To generate the p2 I createt a new ...
1
vote
2answers
58 views

What do these OSGi commands really do?

Using Felix / Equinox, what do the following do under the hood? osgi:install osgi:refresh osgi:resolve osgi:restart osgi:update Is there a state-machine diagram or more concise documentation ...
1
vote
2answers
127 views

How can I expose Eclipse plugins as web services?

I've been doing my research about exposing Eclipse plugins as web services, but I'm getting confused. My requirement is basically to build an Equinox back end for a set of web services. I'll be ...
1
vote
1answer
66 views

How can I debug OSGI classloader issues in Equinox?

I am trying to create OSGI bundles for RestEasy 2.2.1.GA. However, my test client bundle for RestEasy bundles fails when it tries to insantiate a specific type. This problem is specific to Equinox ...
1
vote
1answer
43 views

How much caching is built into Equinox and/or Felix resource loading from osgi bundles

When designing business logic which loads static resources from OSGi bundles (particulary with equinox and/or felix) how much effort should be put into optimizing performance of this? Do these ...
1
vote
0answers
101 views

using the eclipse extension points in virgo

I am encountering a problem here...our team is trying to port an eclipse Eclipse RCP project into the web and so the first step is to try to use Virgo to use the plugins. I have created all the ...
1
vote
1answer
143 views

OSGI with Hibernate: “No suitable driver found”

I'm getting the beloved error: java.sql.SQLException: No suitable driver found for jdbc:postgresql://localhost:5432/acme I understand many reasons why this error usually arises: Invalid URL: This ...
1
vote
2answers
74 views

Bundle.loadClass() returns Class instance without fields or methods

I want to create an OSGi framework programmatically, load a Bundle with it and load a class from that bundle. When I call Bundle.loadClass() I get a Class isntance with all fields\methods\constructor ...
1
vote
0answers
31 views

Install Handler in Equinox P2

I'm writing plugin for eclipse 3.6 and need to make changes in external files during plugin installation process. In org.eclipse.core.updates there was an IInstallHandler interface which was used for ...

1 2 3