Skip to main content
Published: October 13 2017, 11:34:00 AMUpdated: September 06 2022, 8:55:03 PM

We switched our platform notification listener to HTTPS but we are not receiving any Platform notifications since. Why?

 

One of the reasons could be your server requires SNI but provides a wildcard certificate
 

You can run the Qualys Lab SSL Test at: https://www.ssllabs.com/ssltest/index.html. On the test report, Java clients for JDK7 and JDK8 must pass. You will need to fix your wildcard CN certificate if you see the following errors in your report, 

if you running Apache, you can address this issue by insuring the correct site names are contained within the Virtual Host configuration and including a ServerName and ServerAlias directived inside your Apache VirtualHost

 

  <VirtualHost platform.noti.net:443>
  ServerName 
platform.noti.net.net
  ServerAlias 
platform.noti.net.net


Following is an article from Qualys Lab explains the issue:
https://community.qualys.com/thread/13532

 

 

How well did this answer your question?
Answers others found helpful