Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using MEF in Silverlight for dynamic download .xap file. I want to download .xap file only one time and then I want to download .xap file only when if there is any change in version of .xap file.

share|improve this question

1 Answer

up vote 1 down vote accepted

What you describe is normal behaviour. The .xap file will only be downloaded if:

  1. There is a change in the .xap file at the server.
  2. The user clears their cache and so no longer has the file on their machine any more.

We have seen cases where the .xap file isn't downloaded when there has been a change.

What are you seeing that makes you think the .xap file is being downloaded each time?

The last accessed time in your cache merely shows the time the application was last run, not the time the .xap file was last downloaded.

share|improve this answer
Thanks for your reply.You clear my confusion. – Hitesh Apr 10 '12 at 9:33
I am using package catalog to download .xap file on button click event. My question is that is it every time download .xap file when i click on button or only first time download and after that uses from cache. – Hitesh Apr 12 '12 at 6:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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