vote up 7 vote down star
4

When working with Silverlight, I've noticed that Firefox will cache the XAP file, so if I do an update, a user may be stuck using an outdated version. Is there a way to force the browser to either re-download the XAP file every time, or maybe only force it to after an update has been published? Or is there a setting in the Silverlight config that stops the browser from caching the XAP file altogether?

Thanks, jeff

flag

63% accept rate
I'm having this issue too. Thought my page changes didn't work, turns out I was looking at the cached version. Annoying. – jcollum Feb 26 at 6:46
Which one fixed it? – jcollum Feb 26 at 6:49

10 Answers

vote up 1 vote down

You could send HTTP headers to prevent it from caching:

Cache-control: no-cache
Pragma: no-cache

How you do this depends on the web server you're using.

link|flag
I tried this -- it does not appear to work. – Timothy Lee Russell Jan 23 at 16:50
vote up 1 vote down

You might find the Caching Tutorial for Web Authors and Webmasters helpful. This document discusses the different caches through which the client and server interact (browser, proxy, gateway) and how caching can be controlled.

link|flag
How does this answer the question? It doesn't address the specific issues of XAP files. – KevDog Sep 2 at 13:42
vote up 0 vote down

Hi Jeff,

We are also in the same situation wherein we want to control when the .XAP file gets downloaded to the browser.

An approach that you might want to take a look at is to use the Silverlight Isolated Storage as a "cache" to store your .XAP files.

Check out this blog: IsolatedStorage as a Silverlight object cache

link|flag
vote up 0 vote down

A super simple idea: just add a fake query string to the url.

<param name="source" value="app.xap?r12345"/>

Most servers should ignore it and server the file normally--depends on your server. If you get really clever, you could make the hosting page dynamic and automatically append a tick-count or date-time string to the query string. This ensures that you get caching when you want it, but force a download when there's a change.

Ideally, your server should do this for you. But if not...

link|flag
I tried this -- it does not appear to work. – Timothy Lee Russell Jan 23 at 16:49
It will work the first time, but not on subsequent requests, the query string value needs to be dynamic. – KevDog Sep 2 at 13:42
vote up 1 vote down

I had this issue so now when I start a new application I set the assembly version to 0.0.0.1 and just update it by one on every deployment, seems to have solved it for me. Then just set it back to 1.0.0.0 on release.

link|flag
vote up 1 vote down

So far, the only solution that I have found, once the problem occurs, is to clear the Firefox cache.

A better solution would be much better.

link|flag
vote up 0 vote down

I'm getting this to work by a combination of the suggestions above:

  1. Set meta tag cache-control/pragma http-equiv attributes to 'No-Cache'
  2. Use an ASP.NET page to host the silverlight control (as opposed to an html page)
  3. Set the Source property of the ASP.NET Silverlight control in the code behind, appending a time stamp to the .xap url e.g.

    Silverlight1.Source = "ClientBin/MyApplication.xap?" + DateTime.Now.ToString("dd-MM-yy-HH:mm:ss");

link|flag
vote up 0 vote down

Another solution would be to append the version of the XAP file rather than a timestamp. The timestamp would change every time (might as well turn off caching). To get it to only change when the XAP has been updated would be to take some info from the XAP file. Am still looking into what I could use, perhaps the last modified datestamp of the XAP file?

link|flag
vote up 3 vote down

Simplest way:

<param name="source" value="ClientBin/App.xap?<%= DateTime.Now.Ticks %>" />
link|flag
vote up 1 vote down

The query string works perfectly, but I wouldn't use DateTime.Now, because it forces the user to re-download the app every time. Instead, we use the following:

protected void Page_Load(object sender, EventArgs e)
{
    var versionNumber = Assembly.GetExecutingAssembly().GetName().Version.ToString();
    this.myApp.Source += "?" + versionNumber;
}

This way all you have to do is increment the version number in the AssemblyInfo.cs file.

link|flag

Your Answer

Get an OpenID
or

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