Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight page loads insecure content from Microsoft

I have a website that consists mainly of a single Silverlight application. The website is configured to run over HTTPS which works great. However when the site is loaded in Chrome the warning is given that

"The page at https://testing.efilecabinet.com/ displayed insecure content from http://download.microsoft.com/download/5/1/6/5165823D-1D79-4871-8AC2-42DDDB94A5C2/PNGs/SLMedallion_ENU.png."

It seems that the SL framework is loading this image from microsoft over HTTP. Does anyone know of a way to get this to occur over HTTPS?

like image 904
Mel Green Avatar asked Nov 28 '11 19:11

Mel Green


1 Answers

Got it fixed! I downloaded the image and included it with our website changing this line:

<img src="https://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>

to this:

<img src="SLMedallion_ENU.png" alt="Get Microsoft Silverlight" style="border-style:none"/>

Apparently this link "https://go.microsoft.com/fwlink/?LinkId=161376" will still re-direct to a HTTP path to get the image. So downloading the image and including it directly fixed it.

like image 116
Mel Green Avatar answered Sep 23 '22 13:09

Mel Green