Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making a call to a REST web service and the mobile app is retrieving the results from its cache and not going to the server.

I have seen other suggested fixes (similar issue and similar issue2) but the Cache property is not available in silverlight 4.

Does anyone have an idea of how to force silverlight 4 on windows phone 7 to make a request and not hit the cache?

share|improve this question
Note that WP7 uses a variant of Silverlight 3, not 4. – Matt Lacey Mar 3 '11 at 9:20

2 Answers

Although not ideal, a easy solution is to send something like the field "junk" with the value DateTime.Now. That way, a value is always brand new, and will never get cached. If you were doing this in a standard querysting for example:

"&junk=" + DateTime.Now;
share|improve this answer
4  
This would be more cleaner "?nocache=" + Environment.TickCount – Bragaadeesh Jul 20 '12 at 11:26

I've hit this problem too on overflow 7 talking to StackApps - the only thing I could think of was to add an addition random variable to the end of the HTTP/REST request.

share|improve this answer

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.