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
2
votes
1 answer

Virgo's application deployer API crashing on undeploy

I'm trying to have a bundle deploy other bundles and start them using the org.eclipse.virgo.kernel.deployer.core.ApplicationDeployer mostly like the admin app (org.eclipse.virgo.apps.admin) is doing. I've inspired myself from the admin console code…
Decados
  • 51
  • 2
2
votes
1 answer

Has anyone gotten the Liferay portal to deploy onto an Eclipse Virgo Web Server?

I am trying to deploy the Liferay portal onto the Eclipse Virgo Web Server and haven't had much luck. I have at least solved two of the problems involved in this process: 1) The portal.jar that is part of the liferay dependencies has a malformed…
David
  • 393
  • 4
  • 16
2
votes
1 answer

Navigation in a simple Eclipse RAP web-application

I have a feeling that I'm about to ask something obvous/basic here, but I'm a novice when it comes the technologies and have not figured out the "correct" way of doing things so here it goes. Background I am currently developing a web-application as…
FableBlaze
  • 1,785
  • 3
  • 16
  • 21
2
votes
1 answer

Exporting Spring Bean Service in OSGI- New Instance per Injection Call

I am trying to export a spring bean as service using Spring's application context, I need to have them exported as "prototype" scope, but this is not possible due to OSGi Service registry caching the service as singleton. Doing some research I came…
jrmartin
  • 51
  • 4
2
votes
2 answers

Maven Web Project with Apache Felix Plugin

What's the best way to create a simple osgi (deploying into virgo server) project using maven, to create a war structure with pom.xml maven descriptor? A Structure target is *.jsp *.html META-INF MANIFEST (OSGI-CONFIG) WEB-INF classes lib …
jrey
  • 2,163
  • 1
  • 32
  • 48
2
votes
1 answer

Deploying VI JAVA in Virgo throwing java.lang.NoClassDefFoundError

For vSphere Web Client plugin, I created a java Service , I try to create a datastore in the ESX host using VI JAVA. I included import com.vmware.vim25.*; import com.vmware.vim25.mo.*; files in service implementation and included external JARS…
asvignesh
  • 787
  • 2
  • 6
  • 32
2
votes
1 answer

Custom Tomcat Realm : ClassNotFoundException

I am using the Eclipse Virgo (3.6.1) OSGi container, which runs on Tomcat 7.0.31. I am attempting to implement a custom authentication realm according to the Tomcat documentation, but I am running into a ClassNotFoundException when attempting to…
Ben Siver
  • 2,758
  • 1
  • 25
  • 42
2
votes
1 answer

OSGi and Virgo tools : impossible to add a maven project (using bnd maven plugin)

I'm new to OSGi, coded only a few bundles and deployed them manually. Some friends of mine told me about Virgo and Virgo tools, which allows you to auto-deploy bundles you manage with eclipse. I'm currently trying to set all this up. I have…
Localolhst
  • 41
  • 5
2
votes
1 answer

Cannot determine the artifact identity of the file

I was getting import package exception, which i solved using menifist file. But now i am getting other excepotions which i have no idea, i am able to deploy simple bundle, but this particular bundle is not running on virgo server from pickup…
vicky
  • 890
  • 4
  • 23
  • 54
2
votes
1 answer

Deploying a WAR to virgo-tomcat server

I have been stuck for the last couple of days deploying a standard WAR to Virgo-tomcat server (version 3.0.2). The standard WAR file exported from eclipse works perfectly fine on tomcat, but not when deploying to Virgo-tomcat. I have read the…
dasbouse
  • 61
  • 2
  • 6
2
votes
1 answer

dynamic jasper osgi bundle

I am trying to use DynamicJasper in an osgi environment ( Virgo ), I have not found a osgied DynamicJasper bundle, and when I tried to create one myself using maven-bundle-plugin that includes JasperReports and DynamicJasper, I keep on getting this…
jacob
  • 1,397
  • 1
  • 26
  • 53
1
vote
0 answers

OSGi bundle with ThreadPoolTaskExecutor does not shut down gracefully

I am using Eclipse Virgo Server as my OSGi container and my bundle has a Spring provided ThreadPoolTaskExecutor. When I run the server shutDown.bat it will throw me an error and hangs up. I do use the threadPoolTaskExecutor.shutDown() in my code. It…
Sam
  • 2,055
  • 6
  • 31
  • 48
1
vote
1 answer

Is there any Eclipse virgo simple project?

I'm trying to check out osgi on web applications. I googled and found out the best way to go would be using spring osgi and virgo. I can't find an easy to setup sample project. Can anyone help me? update- I should have mentioned that I have a little…
AmirMV
  • 215
  • 1
  • 11
1
vote
1 answer

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 correct things but when I try to use an extension point…
Tommy Chan
  • 622
  • 7
  • 14
1
vote
1 answer

Deploy a bundlet and get the dependent bundles from spring EBR

I have a WAR file that was built using grails framework and OSGi plugin. When I try to deploy it in Eclipse Virgo it fails because the related dependencies are not yet deployed. Is there a way to tell Virgo to fetch the dependency bundles from…
Houcem Berrayana
  • 3,052
  • 22
  • 40