HTTP site for HTTPS webservice using CORS

I have an HTML5 / JS site in a domain that uses the asp.mvc web service for CORS requests in another domain.

Everything works fine with HTTP → HTTP, however, since we are now adding a login and authentication mechanisms for user-specific content, we want to enable HTTPS. However, he simply refuses to send a request for parameters to the web service, simply gives the status of "Interrupted".

I am testing using Firefox and the web service is hosted on IIS7 with a self-server (generated using SelfSSL7).

Are there any known issues around this? I checked:

Cross-domain request from HTTP to HTTPS terminates immediately

However, he mentions that the solution is to make sure the certificate is trusted, and as far as I know, SelfSSL does this using the / T option when I invoke it. So, is there anything else that needs to be changed to get this to work?

+5
source share
1 answer

Unfortunately, you will have to manually install this in firefox, although I believe that you can override this behavior if you manually configure the profile.

+4
source

All Articles