Re: [akka-user] Https Protocol Configuration with JavaDSL

2016-04-26 Thread andreasjscholz
Thanks for the quick reply! Sadly your workaround does not fix the issue as i still do not get support for the newer TLS versions. However switching to 2.4-SNAPSHOT seems to solve the issue (maybe there is some other initialization stuff missing?), so I'll eagerly await the 2.4.5 release ;-)

Re: [akka-user] Https Protocol Configuration with JavaDSL

2016-04-26 Thread Konrad Malawski
Manually specifying the protocols via ConnectionContext.https(...) does not seem to work. The method accepts a List of protocols as Optional<> parameter - however looking into the implementation at javadsl.ConnectionContext : 23 it seems these parameters are actually ignored and not passed on.

Re: [akka-user] Https Protocol Configuration with JavaDSL

2016-04-26 Thread Konrad Malawski
And thanks for noticing the bug about not passing though params - we'll fix. --  Konrad `ktoso` Malawski Akka @ Lightbend On 26 April 2016 at 18:00:16, andreasjsch...@gmail.com (andreasjsch...@gmail.com) wrote: Hi, after switching from the experimental branch of http to http-core 2.11-2.4.4 I

Re: [akka-user] Https Protocol Configuration with JavaDSL

2016-04-26 Thread Konrad Malawski
This is a bug in the DSL. We've been focused on the new DSL and missed this omission in the current one. The workaround is to call this before you bind the app: void useHttps(ActorSystem system) { final HttpExt scalaHttp = (HttpExt) akka.http.scaladsl.Http.get(system); ​ try {

[akka-user] Https Protocol Configuration with JavaDSL

2016-04-26 Thread andreasjscholz
Hi, after switching from the experimental branch of http to http-core 2.11-2.4.4 I have some issues w.r.t. TLS / https setup what has changed is that a https server based on http-core only offers support for TLSv1 and whereas the server based on http-experimental offers support for v1, v1.1