Questions tagged [eclipse-virgo]

For questions about Eclipse Virgo which is a Java application server based the Eclipse Equinox OSGi runtime. It allows modular application development using OSGi primitives as well as offering a smooth transition path for traditional Web Applications.

Eclipse Virgo is a Java application server based the Eclipse Equinox OSGi runtime that allows for modular application development using OSGi primitives as well as offering a smooth transition path for traditional Web Applications.

Virgo is constructed from a kernel which may be used stand-alone for non-web applications or to construct non-HTTP servers. The Virgo Web Server adds the Tomcat-based Gemini Web container to the kernel to provide servlet support. Virgo will provide Gemini Web-based and Jetty-based variants of its web server, in addition to the kernel.

113 questions
0
votes
1 answer

Eclipse Virgo - classloader returns old class after bundle reload

I have bundle A and bundle B. Bundle B imports packages from bundle A and bundle B has Eclipse-RegisterBuddy set to bundle A. Bundle A loads class which is exported by B by Java reflection (Class.forName). When bundle B is redeployed, bundle A still…
vasekt
  • 2,055
  • 2
  • 17
  • 13
0
votes
2 answers

Virgo Jetty Server doesn't create URL for deployed .par

I tried to move my web application from Virgo Tomcat server to Virgo Jetty server to get better support for websockets. The web application is successfully deployed and started but i didn't found the application under the same URL like in Virgo…
Happo
  • 1,375
  • 3
  • 16
  • 34
0
votes
1 answer

Error resolving org.ops4j.pax.logging.pax-logging-service in Virgo

I'm trying to get CXF DOSGi to run in Virgo. I'm using the bundle list with the cxf distribution to create a plan in Virgo. Virgo is unable to resolve the dependencies on org.ops4j.pax.logging.pax-logging-service. Any suggestions on how to get…
Timothy Vogel
  • 1,363
  • 2
  • 21
  • 39
0
votes
1 answer

Spring/Virgo - java swing: JDialog starts behind other windows

I have a service running on Virgo that occasionally needs to prompt the user and get some feedback. I've created a class that extends the JDialog class: public class PPNDialog extends JDialog implements ActionListener, WindowListener{ public…
minimouse
  • 13
  • 1
  • 6
0
votes
1 answer

Eclipse Virgo 3.0.3 and apache felix web console

Folks, I'm trying to get the apache Felix webconsole running on an eclipse Virgo 3.0.3 installation -- I need the extra details it provides that the standard virgo admin doesn't. I uploaded the full org.apache.felix.webconosle-3.1.8.jar to the…
0
votes
1 answer

Virgo Nano - OSGi Bundle sample

I'm tring to get a rest service running in my raspberry pi with Virgo Nano application server. I was googling for sample code for OSGi bundle for rest service so I can play with the code and write my own rest service. But there were no specific…
Isuru
  • 7,893
  • 8
  • 30
  • 38
0
votes
1 answer

virgo tomcat server runs on 3.1.0.release of spring my web app depends on 3.2.0. how do i resolve this?

I want to migrate my web app from standard war to WAB using Virgo Tomcat Server. The std war file depends on spring 3.2.0.RELEASE and VTS has 3.1.0.RELEASE. I tried to deploy all the spring 3.2.0 jars and my web app specific jars in usr directory…
Sana
  • 1
  • 1
0
votes
0 answers

Hawtio and Eclipse Virgo Container?

Folks, I DLd hawtio to play with and I have installed the jolokia-osgi-bundle-1.1.5.jar inside an eclipse Virgo Jetty 3.0.3 container, but when I start hawtio as http://localhost:8190/hawtio (I set it to start with that port), I don't see any…
0
votes
1 answer

Osgi - Virgo 3.6 - Loading application Context

Step 1 Root Bundle I am creating a Jar Bundle deployed in Virgo Server 3.6, The Jar Works fine, Step 2 Plugin Jar Bundle Then to test my first Bundle i am…
jrey
  • 2,163
  • 1
  • 32
  • 48
0
votes
2 answers

Integrating RequireJS into OSGi server

Note: Please don't be intimidated by the word "OSGi." I am integrating RequireJS on an OSGi-based Virgo server environment (though the details are irrelevant). With an OSGi configuration, I have a root "OSGi bundle" that has JavaScript that needs to…
Donald T
  • 10,234
  • 17
  • 63
  • 91
0
votes
0 answers

how to enable catalina log in virgo tomcat server 3.6.1

Server: virgo-tomcat-server-3.6.1.RELEASE Problem: When I try to deploy war file I see this exception: Caused by: org.eclipse.gemini.web.core.spi.ServletContainerException: Web application at '/user-services-core' failed to start. Check the logs for…
Hubert
  • 1,125
  • 5
  • 17
  • 36
0
votes
1 answer

Adding akka dependencies to osgi container

I use osgi container (virgo) [i'm not very good in that]. I added a dependency to my pom.xml com.typesafe.akka akka-osgi_2.10 2.2-M3 I put…
ses
  • 13,174
  • 31
  • 123
  • 226
0
votes
2 answers

EclipseLink hierarchy error

I'm trying to work with Virgo and EclipseLink and implement a application based on Greenpage project. I have implemented a hierarchy but i am getting a wierd error (using EclipseLink): Internal Exception: Exception [EclipseLink-7161] (Eclipse…
PastorPL
  • 968
  • 3
  • 17
  • 36
0
votes
1 answer

Virgo "Greenpages" small change issue

first of all I would like to say that I'm newbie to Virgo and OSGi so please be patient ;) Here's my problem: I'm playing with the "greenpages" lastes version…
PastorPL
  • 968
  • 3
  • 17
  • 36
0
votes
0 answers

Binding web service (wsdl) error

I'm running in Virgo (OSGi) My binding.xml file:
user1373996