I've just started getting this Javascript error running VS2010 with SL4

Error: Unhandled Error in Silverlight Application 
Code: 2104    
Category: InitializeError       
Message: Could not download the Silverlight application. Check web server settings     

Everything was working fine, changed 1 line of code to use a RegularExpression in the web project (using the Silverlight Business Application template) then when rebuilding I get this error.

Google says this is IIS and mimetype related. I'm using Cassini not IIS with VS2010.

Rebooted, cleared xap from IE cache. Error on both IE and FF.

What could be wrong?

link|improve this question

31% accept rate
Are you using the RC or Beta? – AnthonyWJones Apr 8 '10 at 11:36
it was RC at the time – rotary_engine May 5 '10 at 9:48
feedback

5 Answers

I just got this error myself. Looking at source control and my project I noticed that the original test pages that were created when I setup the project got replaced by two new test pages (one .aspx and one .html).

I removed the newly created pages and went back to the old test pages and things started working.

If your situation isn't the same as mine, then just check your silverlightControlHost div in your test page and make sure you are pointing to the correct .xap file and runtime.

link|improve this answer
It started working again. Not sure how though. – rotary_engine May 5 '10 at 9:47
yes, it is !!! same problem =.= – SLim Oct 30 '11 at 14:35
feedback

I had the same error with my provider. When I looked at the MIME type everything seemed to be OK:

.xap => application/x-silverlight-app

which seems to be the default value on IIS 6. Then I looked at the webpage VS 2010 created and noticed that it has a MIME type of

application/x-silverlight-2

I changed the MIME type on IIS according to the webpage's type and - my silverlight application gets loaded without any error!

link|improve this answer
The same solution helped me. The strange thing is, though, that changing it back did not reintroduce the problem. In other words, it seems to be a temporary problem (and only for a specific Silverlight control). – Morten Christiansen Jun 16 '11 at 12:34
feedback

This error often occurs because the MIME type is not set, as you have found for yourself. It can also be a mask for the HTTP error. You can see the message by pulling up the XAP file directly from your browser (http://yourwebsite/ClientBin/filename.xap). The file will either attempt to download, or it will show you an HTTP Error.

link|improve this answer
I'm having the same problem, and the file does attempt to download. What's the next step? – C. Ross Dec 27 '10 at 20:56
feedback

if youre not running in IIS then just check your silverlightControlHost div in your test page and make sure you are pointing to the correct .xap file and runtime.

If you were in MVC you could do something similar...

<param name="source" value="@Url.Content("~/ClientBin/NameOfYourSlAppGoesHere.xap")" />
link|improve this answer
Thanks, this was the key point I was missing. Cheers. – Scott Ferguson Oct 26 '11 at 1:44
feedback

I also had the same issue on VS 2010. And the reason was that the .xap file was not getting copied to ClientBin directory of the hosting web site project.

Reason was the association from the hosting web site project to the silverlight project was missing for some reason. (should be due to some restructuring of the projects that I've done recently in my case) I had to re-add the association from the hosting web site project to the silverlight project.

Steps: On Hosting project, Properties > Silverlight Applications > Add..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.