Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] SSL WebSocket Jetty with Geo Trust Certificate

Of course was my first check :P.
i gona explain my example a little more:
I have an url like "www.myurl.com", then i have a websocket with an ip  like "32.xxx.xxx.xxx" with port "9092". Also i have 2 .crt geotrust intermediates certificates, one .csr ( www.myurl.com.csr) and one key (www.myurl.com.key) to do my https.
Without https i can call my websocket without security like "ws://32.xxx.xxx.xxx: 9092" , but with https im obliged to do Secured, then with my certificates i made a .jks using this manual:

At the end, in my https webpage im calling like that:
"wss://32.xxx.xxx.xxx: 9092"
and i receive a timeout error.

With the same .jks i can connect without problems with a java client, but they use the same .jks, but my serve is apache and works with .crt's , i don't know if it are an incompatibility problems or not.
Can someone tell me if you have the same problem or have a service like that running well?






Date: Tue, 9 Dec 2014 05:40:12 -0700
From: joakim@xxxxxxxxxxx
To: jetty-dev@xxxxxxxxxxx
Subject: Re: [jetty-dev] SSL WebSocket Jetty with Geo Trust Certificate

First, lets fix the obvious.

Secure websocket with _javascript_ is "wss://" not "ws://"

Does that improve things?

--
Joakim Erdfelt <joakim@xxxxxxxxxxx>
Expert advice, services and support from from the Jetty & CometD experts

On Tue, Dec 9, 2014 at 4:37 AM, Victor Garcia <tronab@xxxxxxxxxxx> wrote:
Hi! I'm trying to do a Secured Web Socket with Jetty using a geo trust certificate, I have a .csr with my url and two .crt's from geotrust, then i have to do a jks to use with jetty web socket, but nothing happens. 
I've used this link: http://www.geotrust.eu/en/support/manuals/java/java+based+webserver/keytool+commands/ to do the .jks and I've gotten it to work with a java jetty client, but nothing happen using _javascript_ with "ws://...".

Any idea??? I'm desperate!!
Thanks in advance!

_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________ jetty-dev mailing list jetty-dev@xxxxxxxxxxx To change your delivery options, retrieve your password, or unsubscribe from this list, visit https://dev.eclipse.org/mailman/listinfo/jetty-dev

Back to the top