1. Importing a certificate into Jetty stackoverflow.comThe overall goal here is to have jetty be configured with a client certificate to be able to call a secure SOAP web service. Does anyone know how to configure Jetty to ... |
2. ProxyServlet with SSL stackoverflow.comI have some proxy servlet: , and I want to make the connection(con A and con B on the diagram) to this servlet secure(with SSL). This ... |
3. Jetty 6 - VirtualHosts - SSL Certificates stackoverflow.comI have several virtualhosts configured on a single Jetty instance. I would like to also have unique SSL Certificates for each virtualhost. Can I do this? My understanding is that the call ... |
4. How to run jetty server in SSL mode using PKCS12 keystore? stackoverflow.comI am trying to run jetty web server in SSL mode using PKCS12 keystore. The code is as follows:
|
5. Configure SSL on Jetty stackoverflow.comI am trying to configure SSL on my Jetty. I read this: http://docs.codehaus.org/display/JETTY/How+to+configure+SSL and created a key store. Then, I jumped directly to section 4. But where is this configuration file I ... |
6. Jetty sslConnetor functions? stackoverflow.comI configure ssl on jetty. I am using this code: import org.mortbay.jetty.security.SslSocketConnector; . . . SslSocketConnector sslConnector = new SslSocketConnector(); sslConnector.setPort(8054); sslConnector.setMaxIdleTime(30000); sslConnector.setKeystore("path to keystore..."); sslConnector.setPassword("blabla"); sslConnector.setKeyPassword("blabla"); this.jetty.addConnector(sslConnector); My Q is: why is there a need to set keystorepsw and psw? What ... |
7. Keystore password for Jetty 7.0 SSL configuration stackoverflow.comTrying to setup SSL on jetty 7.2.2 using these instructions:
http://docs.codehaus.org/display/JETTY/How+to+configure+SSL
stuck on 3b:
|
8. Jetty SslConnector's deprecated methods stackoverflow.com
|
9. How to set up SSL on an embedded Jetty? stackoverflow.comI've got jetty 7.x embedded. Basically just creating a SelectChannelConnector to listen on port 80 and WebAppContext to deploy a single WAR directory. I need to add SSL now (all the keystore ... |
10. Modifying default keystore value in java source code stackoverflow.comI have a SSL connector set in my jetty.xml. I need to make the keystore value changeable. Below is the code
|
11. Get Jetty to send the correct SSL certificate stackoverflow.comI have created a Keystore and imported my certificate (issued by an official CA) into it using keytool, no problems there. Next, I start up Jetty (v. 8.0.0 M3) and give it ... |
12. Jetty configuration to disable all SSL checks stackoverflow.comThere is certain Tomcat listener implementation that disable all SSL checks. This comes very handy in development environment. Is there any way to config Jetty to the same behavior? ... |
13. What causes "broken pipe" when using Jetty Content Exchange and SSL? stackoverflow.comI am trying to make a http request using the Jetty Content Exchange object and am getting the following error. What does the handshake failure mean exactly, and how can I get ... |