Re: [akka-user] Re: Akka Java IO TLS

2016-08-08 Thread Vinay Gajjala
Thank you for the response. I will surely try your suggestions. I thought I might not have explained my problem clearly so I created another post with more details you can search this string ("Akka v2.3.14 with Java 7 - TLS configuration") to find it in the group Regards Vinay On Thursday,

Re: [akka-user] Re: Akka Java IO TLS

2016-08-04 Thread Konrad Malawski
I have found handing SSL/TLS from JVM a PITA. Why you don't put the SSL termination in front of the Akka HTTP endpoint (e.g. nginx) ? I'd honestly +1 that (a lot). -- Konrad `ktoso` Malawski Akka @ Lightbend -- >> Read the docs:

Re: [akka-user] Re: Akka Java IO TLS

2016-08-04 Thread Любен
I have found handing SSL/TLS from JVM a PITA. Why you don't put the SSL termination in front of the Akka HTTP endpoint (e.g. nginx) ? On Wed, Jul 27, 2016 at 4:36 PM, Akka Team wrote: > The easiest path would probably be Akka Streams for TCP ( >

Re: [akka-user] Re: Akka Java IO TLS

2016-07-27 Thread Akka Team
The easiest path would probably be Akka Streams for TCP ( http://doc.akka.io/docs/akka/2.4/scala/stream/stream-io.html) and the existing TLS graph module ( http://doc.akka.io/api/akka/2.4/#akka.stream.scaladsl.TLS$). There isn't much documentation on the TLS module, but you should be able look at

[akka-user] Re: Akka Java IO TLS

2016-07-21 Thread Vinay Gajjala
After rethinking and researching was wondering if I can configure/code the netty API which Akka uses to achieve the TLS. I am now sure how efficient is this. Any help would be greatly appreciated Thanks Vinay On Monday, July 18, 2016 at 11:13:33 AM UTC-5, Vinay Gajjala wrote: > > Hi > > I am