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.  
  2. Good:
  3. downloader.open("GET", "image-4.jpg");
  4. Bad
  5. downloader.open("GET", "http://www.helmutgranda.com/images/image-4.jpg");
  6.  

Leave a Reply