Byte Friendly

Random thoughts on programming and related topics.

Silverlight: Security Error

| Comments

Sometimes, you may get not-very-descriptive System.Security.SecurityException. Stack trace tells you that something bad happened somewhere inside EndGetResponse, and that’s it, no more details. One possible cause is this: in a Silverlight project you may tell it to generate a temporary page that will host your application.

image

And if your application sends requests to some host (a linux virtual box, in my case), this will be the source of pain. The dynamically generated page gets loaded to Internet Explorer as file://your_path/TestPage.html. And you are trying to reach HTTP(S) host. This cross-scheme behavior is not allowed.

For more information, see this MSDN article.aspx) and this forum thread.

Comments