I make reassuring requests in my silverlight application, I want to get information that can be transferred to the page, so I constantly make a request for updated data, doing something like
....
Uri url = new Uri(theUrl);WebClient wc = new WebClient();
wc.DownloadStringCompleted += RetreiveUserMessagesResponse;
wc.DownloadStringAsync(url);
My problem is for some reason, when I make a request (and it returns some data), subsequent requests continue to return the same data and do not change! (almost the same as caching the request and saying it, I did it already, let me just return what I got earlier), when I copy the URL and put it in my browser, I get the expected behavior, why is it happens when i make requests through a silverlight application? Thanks for your help Daniel
source
share