Jon Hoffman

Results 39 comments of Jon Hoffman

I think using HttpOptions.allowUnsafeSSL is related to this. Are you using that because you're getting cert chain errors without it? I know that some JVMs ship without Let's Encrypt root...

Hmm, have you encountered a problem with this? what was your workaround?

This library uses java.net.HttpURLConnection under the covers which is implemented with some amount of connection reuse though the exact details are a bit opaque to me. This library attempts to...

Hello, I've not tried this myself, but I found example for you here: http://vafer.org/blog/20061010073725/ Once you've created the `SSLSocketFactory` pass it into the request like this: `Http(url).option(HttpOptions.sslSocketFactory(factory)).asString`

Google for openssl cert key to pem On Sun, Aug 19, 2018 at 07:50 Kashif Ali wrote: > @hoffrocket , > hi i have tried that but in the given...

Sorry, I don't have expertise here. Assuming you've seen this, but maybe what you're looking for? https://stackoverflow.com/questions/991758/how-to-get-pem-file-from-key-and-crt-files On Sun, Aug 19, 2018 at 10:03 AM Kashif Ali wrote: > @hoffrocket...

Yes, currently on basic auth is supported. I'll take a stab at adding digest support.

Hi, i just added this support in c060f856ea20018040e954e303c8d7c76209d3b4, but haven't tested in the real world. Can you clone the repo and test for your use case? You can start a...

I Just pushed a potential fix. Could you pull the latest commits and try again?