Re: [akka-user] Re: akka-http 1.0 RC and SSL and Java

2015-08-14 Thread akkanex
Hi Johannes This is helped me a lot, thank you! - Rob Am Donnerstag, 13. August 2015 09:33:41 UTC+2 schrieb Johannes Rudolph: Hi Rob, here's some recent testing code that creates and uses certificates that are signed by a custom CA. It doesn't require fiddling with Java's `keytool`. The

Re: [akka-user] Re: akka-http 1.0 RC and SSL and Java

2015-08-13 Thread Johannes Rudolph
Hi Rob, here's some recent testing code that creates and uses certificates that are signed by a custom CA. It doesn't require fiddling with Java's `keytool`. The instructions should work similarly for proper certificates in which case you leave out the CA and Create server certificate steps

Re: [akka-user] Re: akka-http 1.0 RC and SSL and Java

2015-08-13 Thread akkanex
Thanks Will! Am Donnerstag, 13. August 2015 02:28:25 UTC+2 schrieb Will Sargent: The SSLContext is responsible for handling the trust store -- you set it up and pass that into akka-http using HttpsContext.create(sslContext,...). How to set up the SSLContext is a bit confusing. There are

Re: [akka-user] Re: akka-http 1.0 RC and SSL and Java

2015-08-12 Thread Will Sargent
The SSLContext is responsible for handling the trust store -- you set it up and pass that into akka-http using HttpsContext.create(sslContext,...). How to set up the SSLContext is a bit confusing. There are examples in the guides for Android: