Equinox is an implementation of the OSGi R4 core framework specification, a set of bundles that implement various optional OSGi services and other infrastructure for running OSGi-based systems.
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
0answers
5 views
P2 Update fails with non default osgi.configuration.area
I am trying to use an equinox based application in a shared environment as described here as Szenario #2 or #3.
The installation is done with the p2 director using a p2 site created with buckminster.
...
0
votes
1answer
15 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
vote
1answer
44 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
27 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
0answers
62 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 ...
1
vote
1answer
90 views
How to follow test first approach with Equinox/OSGi - Tycho - Eclipse RCP environment
I joined a project where the development is carried on Eclipse RCP platform with the use of Equinox/OSGi, Tycho.
I am slowly getting familiar with classpath/classloading mechanism of OSGi, how tycho, ...
0
votes
2answers
59 views
how to expose and consume webservices from an Equinox OSGi application?
I need to develop an OSGi application with clear back-end front-end separation hopefully done using JAX-WS. The google results points to Apache-CXF which supports JAX-WS. The back-end and the ...
1
vote
2answers
66 views
Issues with EclipseLink MOXy OSGi bundle
I am working on a a very simple Eclipse Plug-in with which uses EclipseLink's MOXy for XML binding (marshalling/unmarshalling). I get a couple of errors when I try to marshall a simple class ...
0
votes
1answer
45 views
Lookup OSGI service which is registered with wildcard property
I know that one can lookup service from the OSGI service registry using properties wildcards. This question is about doing it the other way round.
Basically you register a service like this:
...
0
votes
0answers
18 views
Eclipse/Equinox: Printing the details of plugin when ClassNotFoundException occurs
Whenever the classloaders are messed up in an Equinox (or Eclipse) runtime, you get a ClassNotFoundException, with a stack trace similar to this:
Caused by: java.lang.ClassNotFoundException: foo.Bar
...
0
votes
1answer
56 views
How to call start method of an osgi application after all the bundles are started?
I have an osgi application which runs on equinox. This is how the bundles are started in the bootstrap class.
String[] equinoxArgs = new String[]{"-console"};
...
0
votes
2answers
73 views
Eclipse RCP & SWT Widgets & NLS
Does anyone know if its possible to do NLS to some SWT Widgets in SWT\RCP application?
remark:
With JFace components its possible if you create own equinox fragment to plugin org.eclipse.jface, ...
0
votes
1answer
48 views
Global variable in unbind method of OSGi service is null
My application is based on OSGi (Equinox). A OSGi service binds another service by defining a Component XML and bind / unbind methods in the appropriate class.
In the unbind method the value of a ...
0
votes
0answers
63 views
Error charging OSGi bundles in Eclipse Juno [RESOLVED]
I'm trying to run a set of bundles with Equinox, so I can run my bundles inside Eclipse, but I've found several problems.
What I've done to run my bundles is:
Set the Eclipse Scope with the ...
0
votes
3answers
61 views
headless OSGi framework from command line
At the moment I am invoking the equinox OSGi system using:
java -jar org.eclipse.osgi_3.2.0.jar -console
Framework shutdowns immediately when I can exit from it which is normal.However, I want to ...
3
votes
1answer
42 views
which one is called first Activate function or bind function in SCR Runtime
I was confused with the order that which function Activate function or bind function gets called when component become active. In my opinion activate function function will be called first as Bind ...
0
votes
2answers
36 views
Executing code before OSGI
We have a software based on the eclipse platform, that logs many important messages. To get these messages, we have a tool, that collects these logs, saves them in a zip-file and deletes the old logs.
...
-1
votes
2answers
74 views
Java SWT Spinner with text inside?
I have JAVA SWT/RCP application (Equinox OSGi), I am just creating Wizard which should look like one the picture:
The problem I just caught that standard SWT class Spinner, does not offer this kind ...
0
votes
1answer
19 views
equinox launcher jni
Does anyone know how to launch equinox through jni ? I was able to invoke jvm using JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args); I got the main class of ...
2
votes
1answer
35 views
Installing signed jar in equinox
I am trying to install a feature into equinox OSGi container. I do this via the p2 director command line tool:
java -jar ./plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar -application ...
-1
votes
2answers
59 views
Service and Component in OSGI
I have some little silly doubts in an OSGI concepts but they need to be clarified to have better understanding of concepts. Can anybody tell me what is the difference between OSGI Service and ...
0
votes
2answers
55 views
See OSGi bundles
I have Eclipse 3.8.1 and I want to see which OSGi bundles are started so I wrote in cmd from eclipse/plugins directory:
java -jar org.eclipse.osgi_3.8.1.v20120830-144521.jar -console
But nothing ...
0
votes
1answer
103 views
Error with Pax runner
I am using Maven pax plugin to start equinox container within which my osgi bundles should be deployed.As pax runner by default starts a felix container I have explicitly given instructions to start ...
0
votes
1answer
62 views
Deploying OSGI bundles through Maven
Is there any way to deploy osgi bundles in a running equinox container through maven commands?
Any plugin available for the same?
I am posting this question after a lot of searching. I found that ...
0
votes
1answer
106 views
OSGI/Equinox Bundle Resource: URI Scheme is not a file
I have a plugin I'm running in the Equinox container. Within the plugin jar, contains a /bin directory that contains an executable I want to run and the associated shared libraries. I'm trying to get ...
0
votes
0answers
57 views
Embedding OSGi on Weblogic Server 10.3.3
I am new to OSGi, and trying to configure Equinox/Felix on Weblogic Server. But nowhere can I find any information of any OSGi container embedded in Weblogic Server. So my questions are-
1. Has ...
0
votes
2answers
100 views
Maven Equinox plugin
Is there any plugin available that would integrate maven and equinox runtime.? I want my osgi bundles to be packaged , deployed and run in equinox. I am searching for maven commands to perform the ...
0
votes
1answer
37 views
State of required bundle resolved instead of active
I have a bundle A that depends on bundle B. When code in bundle A runs and accesses a class from bundle B then the state of bundle B is resolved (4) instead of active (32) and the activator of bundle ...
0
votes
2answers
88 views
Maven commands to deploy and run osgi bundles
I have my my osgi bundles built. I would like to know is there any maven commands available to deploy and run these bundles in equinox, as we have for jboss-as (mvn jboss-as:deploy & mvn ...
1
vote
1answer
38 views
Getting NPE at p2.console
I am getting NPE exception for p2.console while accessing it.
osgi> provaddrepo http://localhost:8080/Site
gogo: NullPointerException: null
osgi> provaddmetadatarepo http://localhost:8080/Site
...
0
votes
0answers
43 views
RAP/ Java EE Deployment on GlassFsh fails
Since three days, we are facing issues to deploy a hybrid RAP/ Java EE application on GlassFish 3.1.2.
After we successful deployed the RAP mail sample app, we first tried to deploy the application ...
0
votes
1answer
40 views
How to change bundle start level in glassfish 3.1.2 equinox?
I want to change the start level for a bundle in my glassfish. I used equinox as osgi runtime.
I changed the configuration file glassfish\config\osgi.properties and add the folowing line:
...
0
votes
0answers
59 views
Dynamically create OSGi console commands
Is it possible to add OSGi console commands at runtime with the OSGi implementation Equinox?
Background: I have some services that implementing the same interface. Each service has partially the same ...
0
votes
0answers
146 views
Eclipse Shared configuration scenario: Using “osgi.configuration.area” conflicts with default config.ini
we have installed Eclipse 3.7.2 to C:\program files\eclipse, and we use a private configuration area, by specifying
-Dosgi.configuration.area=c:/anywhereElse
in the eclipse.ini file - just as it is ...
1
vote
0answers
36 views
Changes in Equinox Framework Config
Using version 3.7 of equinox I can set :
Constants.FRAMEWORK_STORAGE_CLEAN, "true" and
"osgi.console", consolePortasString()
With equinox version 3.9 setting FRAMEWORK_STORAGE_CLEAN to ...
1
vote
2answers
90 views
OSGi - Is it possible to override a bundle's import package version using a fragment?
I have a bundle (jersey-server) that imports a package (org.objectweb.asm) with a resolution of optional and no version specified:
org.objectweb.asm;resolution:=optional
Currently, our application ...
1
vote
2answers
50 views
weird behaviour of eclipse osgi bundle
I'm trying to deploy a few bundles I implemented along all the required bundles from Eclipse in order to run my own. Let's say, include the Equinox container also with my bundles so it is like an ...
1
vote
0answers
45 views
P2 profile doesn't include bundles installed via p2 Operations API
We have an Eclipse product with already implemented update mechanism of 'Checking for Available Updates' on startup using standard p2 Operations API or 'p2 Silent Update'. This works perfectly fine, ...
1
vote
0answers
158 views
JAVA library for videoconferencing and how to use libjitsi?
In case of a project we need to create a communication in videoconferencing with two PC
under Linux.
We search a library in JAVA to do this.
We found libJitsi base on Jitsi software, witch transmit ...
0
votes
0answers
23 views
Eclipse Equinox p2 installation
I want to install a clean Eclipse instance (current Juno release). With source code (for plugin development) but in first step without any plugins to add only the those I need. But I am not sure which ...
2
votes
1answer
52 views
OSGi/Equinox Bundle Can't Find File
I am writing two OSGi bundles using Eclipse and Equinox.
My first bundle, Bundle A, is in Project: Bundle A. My second Bundle B, is in Bundle B.
Bundle B loads a file server.cfg, which is located ...
0
votes
0answers
22 views
Eclipse Equinox servlet alias name with mask
How to configure a servlet's alias name with mask like /abc/* where the specified servlet should receive all the request that starts with /abc.
I tried by setting this in plugin.xml but its not ...
1
vote
1answer
310 views
Equinox java.lang.NoClassDefFoundError
I am running a very simple osgi bundle whose activator looks like this
public void start(BundleContext bundleContext) throws Exception {
JAXBContext con = ...
1
vote
0answers
61 views
What does this mean: “A persistent start has been called on bundle”
While debugging the dropins I'm getting following exception
java.lang.Exception: A persistent start has been called on bundle: org.eclipse.core.runtime_3.8.0.v20120521-2346
at ...
3
votes
2answers
78 views
Equinox and Java Scripting API
I want to create an OSGi (Equinox) bundle that contains a script engine (JSR-223 compliant) and use it in another bundle via ScriptEngineManager.getEngineFactories().
However the service discovery ...
1
vote
1answer
83 views
Is there a way to make Jetty use SSL with java Code
I have an Eclipse RCP Project with an Equinox Jetty Web Server. I want the Jetty Server to use SSL.
I tested setting the Attributes in the Run Configuration of Eclipse and it works fine.
...
0
votes
1answer
80 views
eclipse: Running a OSGI plugin as OSGI framework
I have created plugin project in eclipse from the hello world template, modified the sysout. Now I am trying to the run the project as OSGI framework. but I am getting below error:
Root exception:
...
1
vote
1answer
220 views
Why can't MANIFEST.MF see packages from Maven's pom?
So I have something like this in my POM:
<dependency>
<!-- jsoup HTML parser library @ http://jsoup.org/ -->
<groupId>org.jsoup</groupId>
...
0
votes
1answer
174 views
maven-pax-provision + equinox: java.lang.Long cannot be cast to java.lang.String
i am experiencing some strang, non reproducible, behavior.
I am developing an OSGi Application using the maven-bundle-plugin and the maven-pax-plugin to run it in Apache Felix and Eclipse Equinox.
...




