javax.net.ssl.SSLProtocolException: handshake alert: unrecognized_name

Justin Abbott
Giga Guru

After upgrading to London, one of our Orchestration REST activities is getting this error: javax.net.ssl.SSLProtocolException: handshake alert: unrecognized_name

This REST call is going through a MID Server, so I added the property glide.outbound.tls_sni.enabled and set the value to true, then restarted the MID Server, but that did not resolve the issue.

Has anyone else seen this error in London?

 

1 ACCEPTED SOLUTION

Bruno5
Giga Contributor

Justin,

I've met the same issue on Kingston. There is a system property (global to all the Mid servers) and a Mid server property, both didn't work. I've added the line below in the file "wrapper-override.conf", to pass the right parameter to the jvm, restarted the Mid server and it worked:

wrapper.java.additional.3=-Djsse.enableSNIExtension=false

 

 

 

View solution in original post

3 REPLIES 3

Bruno5
Giga Contributor

Justin,

I've met the same issue on Kingston. There is a system property (global to all the Mid servers) and a Mid server property, both didn't work. I've added the line below in the file "wrapper-override.conf", to pass the right parameter to the jvm, restarted the Mid server and it worked:

wrapper.java.additional.3=-Djsse.enableSNIExtension=false

 

 

 

Thanks, Bruno! That worked!

You're Welcome.

Please don't forget to set the post as resolved.