Network errors on wp7
问题 I'm trying to build and run old application which worked fine several month ago on wp7, however none of http clients works for me. First, i'm trying HttpWebRequest var httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.Method = HttpMethod.Get; httpWebRequest.Accept = "application/json"; var response = (HttpWebResponse)await httpWebRequest.GetResponseAsync(); it throws an exception The remote server returned an error: NotFound. Then i tried HttpClient Uri theUri = new Uri(