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 ... |
Is there an elegant way to use Services across or between OSGi containers?
Is it even possible?
For instance, lets say I have a service interface on my local machine. ... |
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:
... |
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 ... |
I've got a running equinox osgi framework with a bunch of started bundles. Now i update a bundle using the osgi console via 'update .
(or use provided method: bundle.update(url));
Everything works ... |
1) Bundle A reexports package com.X, which it gets from bundle C
2) Bundle B exports package com.X
3) Now bunlde D has dependency on both A and B.
From where ... |
I want to use Selection Service feature from the eclipse RCP in my swing project. Currently the o.e.ui.workbench bundle which contains the related interface is around 3.7 MB, that's way too ... |
|
I have read a lot of equinox code for this, but still can't figure out a non-hacky way of getting the classloader for a osgi bundle in eclipse equinox setup. Is ... |
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 ... |
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 ... |
I am trying to swap out Sun's HTTPServer for the much better Jetty server, within an OSGi bundle, running on Equinox.
I have tried this:
System.setProperty("com.sun.net.httpserver.HttpServerProvider","org.mortbay.jetty.j2se6.JettyHttpServerProvider");
but when endpoint.publish(url) is called, and the server ... |
I need to wait to start a bundle during the execution of another bundle, is this possible?
|
I have some legacy code that was used to monitor my applications cpu,memory etc that I want to convert to a bundle. Now when i start this bundle its complaining
Missing ...
|
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 ... |
I am banging my head against a mess of JNI code and DLLs that we are trying to shoehorn into an OSGi bundle. It has been particularly hard to get ... |
The Eclipse and Equinox teams have released a new version of Equinox framework which is 3.5.2. I am currently using Equinox 3.5.0 and considering to upgrade to Equinox 3.5.2. However, I ... |
I've got some osgi plugin development going on. I've created a launch configuration in my eclipse IDE, which adds all required bundles to my runtime. Is there any possibilty to export/convert ... |
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 ... |
I am using Equinox, so the Equinox Aspect project seems like a no-brainer, but that project appears to be inactive and has only one page of documentation that leaves me hanging ... |
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?
|
I understand that OSGI is just a specification and they don't event mandate that implementation be in Java.
Then who/which guys have framed the "org.osgi.framework.x" packages. For e.g. where does the BundleContext.java ... |
What is the big difference between launching Equinox via java -jar plugins/org.eclipse.osgi_3.6.0.v20100517.jar and using org.eclipse.equinox.launcher (basically, java -jar plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar)?
I suppose that org.eclipse.equinox.launcher provides some added value, but what exactly?
|
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 ... |
I am currently deploying a number of bundles into equnox using pax-runner. The bundles are in a folder, the path to this is passed to runner in an args file. ... |
I googled this for hours but I couldn't find anything useful.
I have developed some OSGi bundles and now I want to run them outside of the Eclipse IDE in the equinox ... |
I'm looking for toward evolving my app to use an OSGi framework.
Eclipse Equinox appears to be a good choice as implementation... and I'm interrested by the Virgo server.
But what do ... |
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 ... |
I'm developing a commercial Java application based on OSGi framework "Equinox".
Currently I'm looking for a copy protection mechanism.
I known that there is no real way of protecting a Java application from ... |
In the context of an Eclipse RCP application I decided to use OSGi services to provide "Interfaces" out of a plugin (i.e a bundle).
In one of my plugin I have the ... |
I came upon the following obstacle whilst developing in OSGi. One set of bundles, responsible for persistence, uses the com.mysql.jdbc.Driver class, offered by another (Springsource EBR provisioned) bundle. In another bundle ... |
you need to specify classloader to select classes to profile in JIP.But in OSGi platform each bundle has separate class loader which is decided dynamically. JIP has its own advantages.How do ... |
I'm working with an application that uses and manages a large amount of OSGi services and implementations for each service, with properties, dynamism and so. Using the command line of the ... |
I am trying to utilize the Equinox security features to restrict which bundles can be installed in my equinox deployment as well as my RCP client application.
I have read up on ... |
I our application we have several bundles that are running by the Equinox OSGI framework (with Tomcat).
Currently we are passing the application configuration mostly by Java system properties.
This properties are shared ... |
I am trying to become familiar with the OSGI platform and I read a German book about it. I tried to follow every tutorial step to get a simple 'hello world' ... |
I'd like to deploy regular war (not OSGi-ed) in Equinox' Jetty. Doable?
|
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 ... |
I'm in the process of upgrading my application the latest release of Eclipse Equinox 3.7 and associated libraries. I'm excited to have the generic support in OSGi 4.3 and digging the ... |
I get a run time error when trying to run a grails application on Eclipse Equinox.
java.lang.NoClassDefFoundError: org/apache/commons/collections/Transformer
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:632)
at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:188)
at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:580)
at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:550)
at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:481)
at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass_LockClassLoader(ClasspathManager.java:469)
at org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:449)
at org.eclipse.osgi.internal.ba
|
How can I find out the pid of a running equinox instance, is there a pid file somewhere or is it configurable where it places a pid file?
UPDATE: to make it ... |
My application launches a NoClassDefFoundError looking for the org.w3c.dom.Node class when it runs on standalone mode over Equinox.
Is this class provided by the framework? On the command line, I have run ... |
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 ... |
What is the difference between osgi.startLevel and osgi.bundles.defaultStartLevel present in
config.ini of equinox OSGI implementation. I Also want to know how these configuration items are related to number of ... |
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 between the ... |
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 ... |
I'm trying to use RestEasy inside Equinox. The only document that I've seen on the web for this configuration is here: http://sarbarian.wordpress.com/2010/03/07/resteasy-and-osgi-perfect-match/
I've followed the steps here and fixed ... |
Is OSGI framework support FuzzyJess? I was trying to develop an application and tried to use FuzzyJess Toolkit in OSGI Equinox. But when I try to run the bundles which uses FuzzyValue and FuzzyVariable do not get activated. Is this because OSGI does not support FuzzyJess. Kind clarification from anyone would be highly grateful. BR Sonam |