
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2018 07:50 AM
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?
Solved! Go to Solution.
- Labels:
-
Orchestration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2018 05:34 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2018 05:34 AM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2018 05:45 AM
Thanks, Bruno! That worked!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2018 06:01 AM
You're Welcome.
Please don't forget to set the post as resolved.