I have my own front-end website using https, and i want to retrieve data from this xml document : http://www.polymtl.ca/etudes/cours/utils/ficheXML.php?sigle=INF4710. I make a GET request to this page:
$.get("//www.polymtl.ca/etudes/cours/utils/ficheXML.php?sigle=INF4710")
But this end with a security error:
Mixed Content: The page at 'https://mywebsite' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://www.polymtl.ca/etudes/cours/utils/ficheXML.php?sigle=INF4710?sigle=INF4710'. This request has been blocked; the content must be served over HTTPS.
Is there a way to trust this page and bypass security ? Or any hack to get this data involving only front-end libraries ?