Hi,
From an Entity Form in Dynamics CRM 2015 OnPremise (ADFS) I am trying to make a XMLHttpRequest. Since the service I am trying to call uses Http and the CRM uses Https I get an error.
The page at 'https://crmserver' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint '127.0.0.1/Stuff;Param2=456'. This request has been blocked; the content must be served over HTTPS.
Does anyone know if I can get around this problem not changing to '127.0.0.1/Stuff;Param2=456'?
*This post is locked for comments
I have the same question (0)The best strategy to avoid mixed content blocking is to serve all the content as HTTPS instead of HTTP.
For your own domain, serve all content as HTTPS and fix your links. Often, the HTTPS version of the content already exists and this just requires adding an "s" to links - http:// to https://.
For other domains, use the site's HTTPS version if available. If HTTPS is not available, you can try contacting the domain and asking them if they can make the content available via HTTPS.
Refer this article for more details: How to fix a website with blocked mixed content (this is just an example) developer.mozilla.org/.../How_to_fix_website_with_mixed_content
Thanks
A.G.