I'm using monotouch for creating a iphone applicant which called a unsure page which returns JSON.
Strange one this... but when I use HttpWebRequest the output I receive is cached from an earlier request.
I timed it using a stop watch and I have to wait two minutes before I get a new version of the page up until this point every time I call HttpWebRequest I get output thats been cached.
Even if I kill the app and reload it the output is still the same for that two minute window.
This happens on both the simulator and the phone.
I've just tried adding a cache policy and no joy - I'm still getting all responses cached for 2 minutes.
heres my latests code:
Uri address = new Uri(url);
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
System.Net.Cache.RequestCachePolicy c = new System.Net.Cache.RequestCachePolicy();
c.Level = RequestCacheLevel.NoCacheNoStore;
request.CachePolicy = c;
request.Timeout = Settings.RequestTimeout;
HttpWebResponse response = request.GetResponse();
Any one have any ideas?