Silverlight error AG_E_RUNTIME_METHOD 2207

I am doing some testing with Silverlight (I know right!) and I kept getting error #2207 without really getting a detailed description. Well the issue -in MY case- was hat i was trying to download a file cross-domains, and with most plugins it was a no-no. So I just needed to change the source to local file.

JavaScript:
  1. Good:
  2. downloader.open("GET", "image-4.jpg");
  3. Bad
  4. downloader.open("GET", "http://www.helmutgranda.com/images/image-4.jpg");

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.