0

在这里,我放了我的代码,即“在 WebClient 请求期间发生异常”,我放了断点并检查。它会因此出现此错误。对于开发,我正在使用带有 windows phone sdk8.0 的 Visual Studio 2012 Ultimate,如果请求成功完成比我的响应是在 json 字符串中。这将显示在消息框中。现在它显示我“System.Net.Webexception:WebClient 请求期间发生异常。”

public match()
{
    InitializeComponent();

    Loaded += new RoutedEventHandler(profile1_loaded);

}
void profile1_loaded(object sender, RoutedEventArgs e)
{
    WebClient wc2 = new WebClient();

    var URI = new Uri("http://192.168.1.17/eyematch/rest1-7-2/api/match");

    wc2.Headers["Content-Type"] = "application/x-www-form-urlencoded";

    wc2.UploadStringCompleted += 
              new UploadStringCompletedEventHandler(wc2_UploadStringCompleted);

    wc2.UploadStringAsync(
              URI, "GET", "action=getMatchNotificationData&sKey=" + 
              GlobalVariables.skey + "&uKey=" + GlobalVariables.ukey);
}
private void wc2_UploadStringCompleted(object sender, UploadStringCompletedEventArgs er)
{
    try
    {
        MessageBox.Show(er.Result);
    }
    catch (Exception eu)
    {
        MessageBox.Show(eu.ToString());
    }
}  

先感谢您....

4

2 回答 2

0

您是在模拟器中还是在物理设备上进行测试?鉴于您的网络配置(特别是因为它是本地网络 IP),该地址可能无法访问。

于 2013-10-04T14:03:40.087 回答
0

对遇到此错误消息的其他人的有用提示:异常具有 .InnerException,因此如果您将上面的代码更改为也输出“eu.InnerException”,您可以获得更多信息。

于 2015-02-06T03:59:34.173 回答