R – Silverlight – Binding an image which is using https

silverlightsilverlight-3.0

I have an image stored which I can view in a browser using http and https.

However, when I bind these url's to my image source I can only see the one which uses http.

Any way for silverlight to support https images?

Best Answer

Seems to be a problem with the cross-domain / cross-scheme security restrictions in Silverlight.

Here might be a good place to start looking:

http://msdn.microsoft.com/en-us/library/cc189008(VS.95).aspx

You can access resources with a cross-scheme URL (allowed between HTTP and HTTPS) on Silverlight, but you need to explicitly enable this with a security policy file. See Network Security Access Restrictions in Silverlight topic for more information.

Related Topic