Tagged Questions
-1
votes
1answer
27 views
How to enable SSL for both Apache2 and Jetty Server [closed]
I am new to SSL. I got apache2 running, which hosts my personal website,
and also a jetty server via proxy pass (ProxyPass /abc http://{local host}:8080/abc).
How can I enable SSL for both Apache2 ...
0
votes
1answer
24 views
How to achieve some measure of “privilege separation” with Java web-server?
I'm trying to be proactive around security on my Jetty web-server boxes -- especial with regards to storing SSL key information. Apache uses privilege separation so that it starts as root so it can ...
0
votes
0answers
29 views
Jetty MITM SSL using ConnectHandler
I would like to write a SSL MITM proxy using Jetty. I've gone through some examples and it seems that I can use org.eclipse.jetty.server.handler.ConnectHandler for HTTP Connect tunneling.
Is there a ...
0
votes
0answers
44 views
CXF webservice publishing as part of existing web application
I created a web service using the CXF framework using an existing WSDL. I was able to deploy it to jetty (enable SSL connector on jetty) and able to access it both using http and https through client ...
0
votes
1answer
82 views
How to specify the key password using javax.net.ssl?
I am having difficulties with Java SSL. The issue is my key has a password. When I generated the key using the command openssl req -new -newkey rsa:1024 -nodes -out local.csr -keyout local.key, when ...
0
votes
1answer
85 views
Empty image response body when response header has correct length in IE and Fiddler
there is a quite a bit of detail here:
Container: JETTY 7.62 and 7.69 (tried both)
Image: tried jpgs and
pngs
Browser: IE9 and the Fiddler tool
So we have a web page that contains amongst other ...
0
votes
0answers
73 views
Jetty 8.1.9 startup timeout with SSL configured
I have my Jetty 8.1.9 configured with SSL.
But when I started Jetty server, it stopped and got timeout without any keystore error message...
2013-02-19 ...
1
vote
1answer
162 views
Jetty HttpClient 9 (9.0.0.M5) SSLContextFactory's TrustAll flag not working?
I'm using Jetty HttpClient 9 to do some simple web crawling and I can't seem to make it work with HTTPS. The following simple code that makes a synchronous GET request ...
SslContextFactory ...
1
vote
1answer
246 views
Embedded Jetty 9 HTML form sending data to application
I have created a simple login form using a servlet receiving information via HTTP POST trough an SSL connection on an embedded Jetty 9 server. The servlet receives the information as it's supposed to ...
4
votes
1answer
284 views
How can I make CLIENT-CERT SSL renegotiation work in Jetty?
I have a webapp that has a public https area, and a private https protected with client certificate using SSL renegotiation.
This configuration works correctly (not without a lot of work) in Tomcat 7 ...
1
vote
1answer
620 views
Programatically Configure SSL for Jetty 9 embedded
I'm using jetty version 9.0.0.M4 and am trying to configure it to accept SSL connections.
following the instructions in:
http://www.eclipse.org/jetty/documentation/current/configuring-connectors.html
...
9
votes
0answers
378 views
Jetty WebSocketClient over ssl
I've got a WebSocket server running in an embedded jetty (8.1.8.v20121106) and would like to connect to it from another Java application with the jetty WebSocketClient. This is the test method I use:
...
1
vote
1answer
82 views
Is there a way to make Jetty use SSL with java Code
I have an Eclipse RCP Project with an Equinox Jetty Web Server. I want the Jetty Server to use SSL.
I tested setting the Attributes in the Run Configuration of Eclipse and it works fine.
...
1
vote
0answers
126 views
Accessing the peer certificate in Jetty HttpClient
I am using Jetty HttpClient to make HTTPS requests. After establishing the SSL connection and before sending the data I would like to verify that I am talking to the intended server. Basically, if I ...
4
votes
1answer
248 views
Plaintext Connection
I am creating a simple HTTPS connection and returning a response
URL google = new URL("https://www.google.com/");
HttpsURLConnection connection = (HttpsURLConnection)google.openConnection();
...
1
vote
0answers
121 views
restarting sslsocketconnector after putting a new socket in truststore on jetty
I have a jetty webserver. I am trying to register a certificate into the truststore.
The certificate gets registered properly but when a client tries to authenticate with a registered certificate the ...
1
vote
1answer
266 views
Securing multi core solr/jetty server with OpenSSL/https
I have a multi core solr instance running on a server with Jetty and I'm working on securing the backend. I have configured Jetty to use https protocol and everything works fine when I submit a ...
1
vote
2answers
56 views
Offering an SSL certificate through HttpServlet or similar
The setup: I have a Jetty (8.1.5 if it matters) Server running a simple site over https, using a self-signed certificate (it's intra-net so this is not an issue). This works.
However, in order to ...
1
vote
1answer
2k views
SSLException: Peer shut down incorrectly
Within my client ant task to download files off of a Jetty server I occasionally get a
javax.net.ssl.SSLException: SSL peer shut down incorrectly
at ...
5
votes
2answers
540 views
Using a custom keystore with Jetty's WebSocketClientFactory
I have a Java project that is connecting to a CometD server over a secure WebSocket transport which uses a self-signed certificate. I'm configuring the WebSocketClientFactory in the following way:
...
0
votes
1answer
190 views
forcing jetty (running on maven) to ignore ssl error
is there any way to force jetty (which runs on maven) to ignore ssl handshake problem? currently my machine has self signed certificate. it makes problem when my jetty gets https request from other ...
0
votes
1answer
419 views
Two Way SSL with Jetty and Null Cipher
I have an application running in Jetty. In front of it, I have a load balancer. The requirement is to have SSL decryption done by the load balancer while the web container does only SSL client ...
2
votes
1answer
2k views
Jetty v8.x - How to Configure / Enable SSL for HTTPS and steps to create Windows Service
I have currently deployed a war file in my Jetty 8.x webapps container. I can start the Jetty server and connect to my server using HTTP. I want to be able to connect using HTTPS. What is the ...
1
vote
2answers
496 views
What is the difference between keyStorePassword and keyManagerPassword in Jetty?
I am looking at SSL for Jetty: http://wiki.eclipse.org/Jetty/Reference/SSL_Connectors
There are properties for both keyStorePassword and keyManagerPassword.
I suppose the keyManagerPassword is used ...
1
vote
0answers
202 views
How can I configure jetty to use my jersey servlet with HTTPS protocol
Please help me.
I readed on http://wiki.eclipse.org/Jetty/Howto/Configure_SSL, that I need to configure $Jetty_Home/etc/jetty.xml and specify my keystore
<Call name="addConnector">
...
4
votes
1answer
692 views
If there's more than one certificate in Jetty's key store, how does it choose?
There is some code in our system for automatically generating self-signed certificates into a key store which is then used by Jetty. If a key for a given host already exists then nothing happens but ...
0
votes
1answer
478 views
Using different SSL certificate per Camel+Jetty route
I have a series of webservices exposed using the Camel Jetty component running in ServiceMix (Fuse). Something like:
<route>
<from uri="jetty:http://0.0.0.0:25100/service1"/>
...
0
votes
1answer
370 views
What is the replacement for SslSocketConnector setPort() in jetty http client?
I'm currently doing an upgrade of our jetty version from 7.1.6 to 7.6.2. I noticed that a lot of the methods of SslSocketConnector that we're currently using have been deprecated since our old ...
0
votes
1answer
2k views
Jetty ProxyServlet with SSL support
I am using Jetty's ProxyServlet as a HTTP proxy.
After I start the server and add the socks proxy in firefox I can access websites through the proxy without any problems.
The problem is that when I ...
0
votes
1answer
551 views
How to force SSL on some URLs using restlet on Heroku
I have a restlet-based app running on heroku that I want to use SSL. I have enabled the basic "piggyback" ssl option, so it accepts ssl connections -- almost there! However, I want some (actually, ...
3
votes
2answers
761 views
Passwords in SSL with Jetty tutorial
In this tutorial , where are the following values coming from?
password (OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4)
keyPassword (OBF:1u2u1wml1z7s1z7a1wnl1u2g)
trustPassword ...
1
vote
1answer
301 views
configure jetty ssl in heroku
I have a standalone launcher for jetty inside server directory. I have some jeytty configuration code there. I need to configure jetty to work with http and https connectors.
As I understand heroku ...
0
votes
3answers
285 views
How to set up SSL
I am developing a web application with GWT. Now it is running in development mode in local server with Jetty. Could anyone tell me how can I set up the SSL in this case. Thank you in advance.
0
votes
2answers
370 views
Deprecated Embedded Jetty 7.6 using SSL
I am trying to build an embedded jetty application which is fine so far. But if i try to use SSL it seems all methods are deprecated. I found a post here on stackoverflow where the poster solved his ...
0
votes
1answer
252 views
Enabling SSL(TLS) for Jetty in Ubuntu Oneiric
I'm using Ubuntu Oneiric Ocelot, which includes in its repos the Jetty 6.1.24 package. It works very well, but I'm having trouble trying to configure it for SSL. I've changed the jetty*.xml files and ...
1
vote
1answer
123 views
Jetty configuration to disable all SSL checks
There 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?
0
votes
1answer
274 views
Get Jetty to send the correct SSL certificate
I 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 the location of the ...
0
votes
0answers
111 views
Modifying default keystore value in java source code
I have a SSL connector set in my jetty.xml. I need to make the keystore value changeable.
Below is the code
Map props = new HashMap();
props.put("jetty.keystore", "/etc/jetty-ssl.keystore);
...
0
votes
1answer
735 views
SSL Handshake between two WebApps
I have a webapp-1 deployed on a SUNWappserver that requires two way SSL authentication. I can write a java client-1 for it, and it works just fine.
However, when I write a client-2 for webapp-1 as a ...
1
vote
1answer
770 views
Having issues using existing Entrust certificates for Jetty SSL connection
I have three files from Entrust: *.csr, *.key and *.crt.
So far:
I have brought the *.key and *.crt into a PKCS12 keystore using OpenSSL
I have imported the *.pkcs12 into a keystore using keytool
...
0
votes
2answers
497 views
Restlet 2.0.8 with the Jetty connecter doesn't resume SSL sessions, while the Simple connecter does
Does anyone know why this is, or how to fix it?
I'm using an android to connect via httpclient - the Simple connector resumes the connection just fine, but Jetty performs a new handshake each time ! ...
3
votes
0answers
745 views
Jetty secure session cookies when behind reverse proxy using HTTP
I am using a reverse proxy (Apache) in front of Jetty 6. Users connect to Apache with SSL, and Apache forwards some of the requests to Jetty over plain HTTP. I want Jetty to use secure session ...
2
votes
2answers
825 views
jetty maven dependencies
We are using the maven Jetty plugin for development.
i always used
<jetty.version>7.2.2.v20101205</jetty.version>
and
<plugin>
...
2
votes
2answers
2k views
How to set up SSL on an embedded Jetty?
I'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 stuff is ...
4
votes
1answer
1k views
Is there a way to force Jetty to only use HTTPS?
I'm trying to force Jetty to only use HTTPS (or redirect to HTTPS from HTTP).
So far, I can access the server using both HTTP and HTTPS.
Here's the connector configuration:
<Call ...
3
votes
3answers
3k views
Apache Camel Http and SSL
I have been trying to get a 2-way ssl/https proxy working with Camel. I have been able to set up the Jetty Component using 2-way ssl and am now attempting to get it working with the Http4 component ...
3
votes
2answers
979 views
Jetty SslConnector's deprecated methods
SslConnector.java interface has been changed in the newest Jetty 7.3.1.v20110307.
Almost all off the methods have been marked as deprecated without mentioning the replacement interface or methods to ...
1
vote
2answers
2k views
Jetty truststore authentication with SSL client-auth
I'm trying to make a web-app with using client keys for client authentication. I think I've figured out the whole truststore problem so I can get the client actually authenticated. However I don't ...
9
votes
4answers
8k views
Exception at start of request - ClientAuth SSL
I have an application embedding Jetty. I would like to use client cert authentication in SSL and when I enable that; I am getting the following exception at start of request. But the request is ...
4
votes
5answers
4k views
Keystore password for Jetty 7.0 SSL configuration
Trying to setup SSL on jetty 7.2.2 using these instructions:
http://docs.codehaus.org/display/JETTY/How+to+configure+SSL
stuck on 3b:
keytool -importkeystore -srckeystore jetty.pkcs12 -srcstoretype ...