Question
Srinsoft Technology
Srinsoft Technology
IN
Srinsoft Technology
Posted: Jun 15, 2018
Last activity: Oct 17, 2018
Last activity: 17 Oct 2018 5:28 EDT
Closed
Does pega 6.3 sp2 support TLS 1.2 protocol only
Hi,
Does pega 6.3 sp2 support TLS 1.2 protocol only.
Regards,
Sreenivas
***Edited by Moderator Marissa to update platform capability tags***
Hi
Support for TLS started in PRPC 6.3 SP1. Pega 7 fully supports TLS natively.
https://community.pega.com/support/support-articles/soap-service-call-fails
If you more curious, you can check SSL/TLS version support by running an activity. Write this java code
try
{
String[] prots = javax.net.ssl.SSLContext.getDefault().getSupportedSSLParameters().getProtocols();
myStepPage.putString(".pyNote", java.util.Arrays.toString(prots));
}
catch (Exception e)
{
oLog.error(e);
}
output would be like this :
If you don't see a version on the list it is due to the java environment not supporting it. Some reasons include:
Thank You