Question
Highmark Health
Last activity: 26 Oct 2018 10:18 EDT
Does PEGA v6.2 sp2 supports TLS 1.1/1.2 ?
Hello,
I am getting below error while trying to execute Connect-rest rule in Pega v 6.2 sp 2.
"- javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated"
I ran below code in PEGA 6.2 sp2, it returned [TLSv1, TLSv1.1, TLSv1.2] . means Pega 6.2 sp2 supports TLS 1.1/1.2 ?
Hello,
I am getting below error while trying to execute Connect-rest rule in Pega v 6.2 sp 2.
"- javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated"
I ran below code in PEGA 6.2 sp2, it returned [TLSv1, TLSv1.1, TLSv1.2] . means Pega 6.2 sp2 supports TLS 1.1/1.2 ?
{
String[] prots = javax.net.ssl.SSLContext.getDefault().getSupportedSSLParameters().getProtocols();
myStepPage.putString(".pyNote", java.util.Arrays.toString(prots));
}
catch (Exception e)
{
oLog.error(e);
}
few article says - "Support for TLS started in PRPC 6.3 SP1 not in 6.2".so please clarify whether v6.2 SP2 supports TLS 1.X or not ?
Regards,
Sudheer Nimmagadda