https://issues.apache.org/bugzilla/show_bug.cgi?id=54759

--- Comment #4 from Philippe Mouawad <[email protected]> ---
For Java Impl add this to system.properties:
https.protocols=SSLv3

It will fix issue for Java Implementation.

So it seems the server only supports SSLv3, attempt to negotiate upwards from
v2 to v3 seems not to be supported by server.

To fix it for HC family it seems we need to call this on SSL Socket:
- socket.setEnabledProtocols(new String[] { "SSLv3" });

We need to find a way to make this configurable.

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to