Using embedded Tomcat 8 with Java 8 and I am unable to get the SSLv3 protocol re-enabled. I am unable to hit the web application with Internet Options -> Advanced settings with SSLv3 checked and all others (SSLv2, TLS1.0, TLS1.1, TLS1.2) unchecked. I have tried setting the SSL protocol like so:
httpsConnector.setAttribute("sslProtocol", "SSLv3");
I have also tried setting the SSL protocol like so:
httpsConnector.setAttribute("sslEnabledProtocols", "SSLv3");
I have also added this line to the deployment.properties file to enable SSLv3 in JRE 8
deployment.security.SSLv3=true