WebClient返回(500)内部服务器错误

时间:2013-09-05 04:51:07

标签: c# webclient

我的WPF应用程序出现问题,正在返回 “远程服务器在我的回调函数中返回错误:(500)内部服务器错误。

我有以下代码;

System.Diagnostics.Debug.WriteLine("GetProduct DownloadStringAsync ");
try
{
     GetProduct.DownloadStringAsync(uri);
}
catch (Exception ee)
{
    System.Diagnostics.Debug.WriteLine("CATCH GetProduct DownloadStringAsync " + ee.Message);
}

在我的回调方法中:

private void GetProductCallBack(Object sender, DownloadStringCompletedEventArgs e)
{
  if (e.Error != null)
  {
   . . . 

e.Error =“远程服务器返回错误:(500)内部服务器错误”

是否是服务器访问问题或我的代码有问题? 关于URI,它已经过测试,没问题。

由于

enter image description here

1 个答案:

答案 0 :(得分:0)

这不是客户端问题,而是服务器问题。请查看此信息以获取更多信息:http://www.checkupdown.com/status/E500.html

  

此错误只能通过修复Web服务器软件来解决。   这不是客户端问题。它取决于Web的运营商   服务器站点,用于定位和分析应该进一步提供的日志   有关错误的信息。