Hi,
According to the information I can find, SSL_RSA_WITH_3DES_EDE_CBC_SHA belongs to SSLv3 which is disabled by default on JDK 8 (since u31) because it is insecure (and thus highly discouraged to use in production) (1)
You can try by enabling it again in the JDK. Have a look at the /jre/lib/security/java.security file, it contains a line like this
jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 1024, \
EC keySize < 224, DES40_CBC, RC4_40, 3DES_EDE_CBC
You should remove the SSLv3 entry from this list.
regards
Rudy