GroG
GroG
curl is a little more informative ... ``` curl -vvv https://example.com:8888/index.html * Trying 127.0.0.1... * TCP_NODELAY set * Connected to example.com (127.0.0.1) port 8888 (#0) * ALPN, offering h2 *...
Any thoughts for this ? TLS works headers are exchanged, but exceptions are coming from netty + no static file returned ?
The js of the client initially is served from static pages .. I'm using the Atmosphere javascript client - https://github.com/Atmosphere/atmosphere-javascript So, yes - a handler is set to serve the...
heh, sorry about the extremely long pause ... apparently some pandemic got loose ... @thabach - ya ... works fine under http ``` curl -k -vvv --ignore-content-length http://example.com:8888/index.html * Trying...
can we re-open this ?
interestingly, my custom resource works fine in https `configBuilder.resource("/api", this);` ``` curl -k -vvv --ignore-content-length https://example.com:8888/api/service/runtime/getUptime * Trying 127.0.0.1... * TCP_NODELAY set * Connected to example.com (127.0.0.1) port 8888 (#0)...
Easy :) https://github.com/MyRobotLab/nettosphere-ssl I tried to provide the simplest example... ``` boolean ssl = true; if (ssl) { SelfSignedCertificate ssc = new SelfSignedCertificate("localhost"); SslContext sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey(), null).build(); configBuilder.sslContext(sslCtx);...
@jfarcand any ideas ?
@thabach - I updated the pom in the example with the bouncy castle dep. Also, I updated the poms spec references to java 11 (from java 8) ... I'm using...
My super quick way to test - adding the source test to a clean nettosphere git checkout 4a5d587d00d22899671790832df945adf526f80c  noWorky :(  curl -k https://localhost:8080/index.html curl: (52) Empty reply from...