webresponse not updating the XML



我面临WebResponse属性的问题,它没有在我的Windows phone 7应用程序中正确更新。

   ReceiveData()  // I m calling this Function recursively, With Timer.
   {
        strurl = "http://www.***Mylivedatawebsite.com/api/rates.php";
        webRequest = (HttpWebRequest)WebRequest.Create(strurl);
        webRequest.BeginGetResponse(new AsyncCallback(FinishWebRequest), null);
    }
    FinishWebRequest(IAsyncResult result)    
    {
        WebResponse resp = webRequest.EndGetResponse(result);
        StreamReader objReader = new StreamReader(resp.GetResponseStream());
        XDocument Doc = XDocument.Load(objReader); 
    }

解析后的文档包含相同的值。请帮帮我。

在windows phone 7中,通常会缓存Web服务响应。您可以在url的属性中使用增量方法。这是下面的示例。

static int increment= 0;
strurl = "http://www.***Mylivedatawebsite.com/api/rates.php"+ "id =" + (increment++).ToString();

通过这种方式,当Web服务看到不同的属性id时,它将向服务器发出重新请求。

相关内容

  • 没有找到相关文章

最新更新