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

Maven-Pax-Plugin and Gemini Blueprint /Spring DM

following situation: We are developing an OSGi-application and the final porduct should be using Eclipse Virgo. To get in touch with OSGi and Spring i am now investigating the OSGi Blueprint concept. I am trying to use the maven-pax-plugin and…
0
votes
1 answer

OSGi bundle loading: NoClassDefFoundError of standard java class

I'm trying to run iDempiere on Virgo. I loaded multiple bundles without problems. The org.adempiere.server and org.idempiere.webservices load fine. But when loading the org.adempiere.ui.zk bundle, I get a NoClassDefFoundError in the…
Jeroen
  • 821
  • 1
  • 9
  • 16
0
votes
3 answers

@Autowired issue with @Configurable servlet

I am trying to autowire a class into a WebSocketServlet in the following way: @Configurable(autowire=Autowire.BY_TYPE) public class MyServlet extends WebSocketServlet { @Autowired public MyClass field; // etc... } Here's what my…
JohnIdol
  • 48,899
  • 61
  • 158
  • 242
0
votes
1 answer

Use HttpService with Gemini Web

How can i use OSGi HTTPService in Gemini Web. Best Regards, Keshav
keshav84
  • 2,291
  • 5
  • 25
  • 34
0
votes
1 answer

spring framework security @preauthorize annotation not working in osgi

I am using osgi with spring annotations based config. (using virgo to deploy the app) @preauthorize annotations on the method impl are not working. It is allowing the user to access it despite not having the role. If I put the same annotations on…
Rajani Karuturi
  • 3,450
  • 3
  • 27
  • 40
0
votes
1 answer

Use Spring-DM Extender

I need to wait some time before shut down my OSGI context.( Give some time to finish the tasks that are currently running). I came across with shutdown.wait.time property in the extenderProperties bean. Can anyone please let me know how can I use…
Sam
  • 2,055
  • 6
  • 31
  • 48
0
votes
2 answers

JavaMail fails in an osgi bundle

I am trying to send mail using JavaMail from a bundle ( running on Virgo ), if I try the same code from a simple test jar ( not osgi ) on the same machine it succeeds. this is my code: Properties props = new Properties(); props.put("mail.smtp.host",…
jacob
  • 1,397
  • 1
  • 26
  • 53
0
votes
1 answer

org.h2.jdbc.JdbcSQLException: Database may be already in use: "Locked by another process"

I am trying to follow the direction to setup the Virgo sample project greenpages ( http://www.eclipse.org/virgo/documentation/greenpages-documentation-2.4.0.RELEASE/docs/html/ch02s03.html ). When i execute the data script I get an exception. The…
jflowers
  • 31
  • 1
  • 4
1 2 3 4 5 6 7
8