Open patrickdent opened 6 years ago
Getting handshake failures when attempting to connect to a secure service.
Perform a request to an https endpoint.
Request succeeds.
Request throws javax.net.ssl.SSLHandshakeException
val url = "https://example.com"; val requestBodyContent = mapper .createObjectNode() .put("key1", "val1") .put("key2", "val2") .toString(); val request = Recipes.newRequestPost( url, requestBodyContent, Recipes.ContentType.Application_Json); FullHttpResponse response = client.newCall(url).get(nAuthRequest).execute().get(); //throws exception
0.2.2
Can you include the code used to create the client?
Summary
Getting handshake failures when attempting to connect to a secure service.
Steps to reproduce
Perform a request to an https endpoint.
Expected behavior
Request succeeds.
Actual behavior
Request throws javax.net.ssl.SSLHandshakeException
Minimal yet complete reproducer code (or URL to code)
xrpc version
0.2.2