Questions tagged [winstone]

Winstone is a LGPL-licensed Java servlet container

Winstone is a LGPL-licensed Java servlet container.

More information can be found on the project's homepage.

Winstone is used by the Jenkins continuous build tool.

20 questions
5
votes
1 answer

Where to put the sqlite3-database when deploying a JRuby-On-Rails App as a war?

Background: I want to deploy a small JRuby-On-Rails-Application using warblers executable war, so I can just drop the .war-file and everyone can run it with java -jar app.war. The application uses sqlite3 to store some data, and the…
Jan
  • 1,445
  • 1
  • 16
  • 20
4
votes
2 answers

Winstone configure self signed keystore for SSL Authentication

I am creating a self signed key using keytool -genkey -keyalg RSA -alias selfsigned -keystore keystore.jks -storepass password -validity 1360 -keysize 2048 Embedding the keystore with Winstone servlet container using --httpsKeyStore=keystore.jks…
3
votes
1 answer

How to make nginx passthrough on 443 and redirect 80 to 443?

I have a winstone server (Jenkins) listening on 8443. Jenkins has a valid cert, and Jenkins is doing the cert termination successfully: JENKINS_ARGS="--httpPort=-1 --httpsKeyStore=/secure/jenkins.keystore --httpsKeyStorePassword=MY_PASSWORD…
grayaii
  • 2,241
  • 7
  • 31
  • 47
2
votes
1 answer

Jetty/winstone connector configuration in Jenkins

I am experiencing slow download times over WAN links from JENKINS. Not going into details of the problem i would like to configure Jetty apparently used by Jenkins to add the following connector:
Jacek Tomaka
  • 422
  • 7
  • 15
2
votes
1 answer

Embed Winstone with jetty server

I have a jar file embedded with jetty and a war file running on winstone. I need to embed two projects with same server or is it possible to embed winstone with jetty server to run on same port?
2
votes
1 answer

Hudson context url

How can I change Hudson context url and access it something like http://localhost:8080/hudson instead of http://localhost:8080/? I'm using hudson standalone and is runing as a service on a fedora virtual machine.
Madalina
  • 1,297
  • 6
  • 15
  • 25
2
votes
3 answers

Lightweight servlet container for production use

I use Tomcat in production. Are Jetty and Winstone (https://stackoverflow.com/questions/1515654/what-is-a-lightweight-fast-java-servlet-container) suitable for production use? I'm happy to let go of features in return for simplicity. Servlets and…
David Carboni
  • 1,556
  • 23
  • 24
2
votes
1 answer

Jenkins Server Suddenly Fails. Cannot reach GUI

I setup a Jenkins server on a redhat linux VM a while back to run our unit and integration tests. It has worked without much trouble for about two months, but now I suddenly can no longer browse to the GUI/HUB. I don't believe I have changed…
OrwellHindenberg
  • 4,988
  • 8
  • 38
  • 58
1
vote
1 answer

Cannot get Jenkins to start and run properly

I am following the "Getting Started" guide from the Jenkins documentation; however, I have not been able to get Jenkins to run properly. When I run the command java -jar jenkins.war --httpPort=8080 I get a series of warnings/errors and Jenkins will…
O'Malley
  • 11
  • 3
1
vote
1 answer

Jenkins standalone implementation: Winstone or Jetty?

I am currently using the Jenkins cookbook from Chef Supermarket to manage my Jenkins configurations. I am installing via the WAR file installation option as oppose to package based installation. I am not running Jenkins within Tomcat, but rather in…
J0991
  • 977
  • 2
  • 9
  • 16
1
vote
1 answer

Disable non-DHE and non-ECDHE ciphers in JSSE

I have a Winstone server running Jenkins on Windows with Java 8. I'm trying to ensure that if a client request fails to specify a preferred cipher, a Diffie-Hellman cipher is preferred by the server. Unlike Tomcat, Winstone doesn't appear to have a…
OtherDan_84
  • 11
  • 1
  • 4
1
vote
1 answer

Winstone vs Tomcat

Could someone help me understand or rather provide a comparison between using winstone vs tomcat from both functionality perspective as well as performance perspective.
1
vote
0 answers

No providers found restful api jeresey

I am using winstone server with following java code package com.spundhan.testweb; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; @Path("/hello") public class Test { // This…
Deepak
  • 177
  • 2
  • 11
0
votes
1 answer

Winstone: could not find Factory: javax.faces.context.FacesContextFactory

I'm not able to publish JSF2 application on Winstone server. Server is configured fine and when I remove 1 from web.xml, it starts normally: But when I try to start indew.xhtml, server reports: Part of my…
gaffcz
  • 3,469
  • 14
  • 68
  • 108
0
votes
1 answer

how to print file name in log in node js

could you please tell me how to print file name in log in node js.it always print index.js why ? here is my code https://codesandbox.io/s/elegant-bassi-ij2e9 [![enter image description here][1]][1] format: format.combine( format.label({ label:…
user944513
  • 12,247
  • 49
  • 168
  • 318
1
2