Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] sslsocketconnector hangs

hi,

i use (custom) sslsocketconnector with a Handler for delivering some text content back, nothing special. embedded-jetty 7.16


public class ProxySslSocketConnector extends SslSocketConnector {
    public ProxySslSocketConnector(){
        super();
    }
   
     @Override
        public void customize(EndPoint endpoint, Request request)
            throws IOException
        {
//do-nothing
        }
}

after loadtesting the server stops to response, some more debugs shows the handshake process suddenly doesnt work anymore:

try with openssl, after CONNECTED nothing happens:

openssl s_client -connect 127.0.0.1:8080
CONNECTED(00000003)


 ssl-debug on server side:


Allow unsafe renegotiation: false
Allow legacy hello messages: true
Is initial handshake: true
Is secure renegotiation: false
qtp482848780-31 - Acceptor2 ProxySslSocketConnector@0.0.0.0:8080, setSoTimeout(200000) called


and nothing happens.

load (cpu, memory normal)

disconnect all clients & retry doesnt bring any changes


just restart the webserver & things work again.

any clue ?

thanx


ps:
environment:
opensuse x64, 11.4, jdk 1.6.0_23-b05, jetty 7.16





Back to the top