webrequest get抛出异常“远程服务器返回错误:(501)Not Implemented。”

时间:2011-01-20 19:26:42

标签: c# webrequest notimplementedexception

我正在尝试使用webrequest方法加载文件。首先,我需要登录然后获取文件或目录列表。 https:///xxx.yyy.zzz/login_template

当我在firefox中查看网站源代码时,我看到了

  <META http-equiv="Content-Type" content="text/html">
  ....
  <form method="post" action="/template/login" enctype="application/x-www-form- urlencoded">
  ....
  <input name="user" type="text">
  <input name="password" type="password">
  <input type=hidden name="switch" value="Log In">
  <input type="submit" value="Accept">

所以,我写了这段代码:

  public static string DownloadFile()
  {
     CookieContainer cookieJar = new CookieContainer();
     HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https:///xxx.yyy.zzz/login_template");
     request.CookieContainer = cookieJar;

     // Set the credentials.
     request.Proxy.Credentials = CredentialCache.DefaultNetworkCredentials;
     request.Credentials = new NetworkCredential(userName, pass);
     request.KeepAlive = true;
     request.UserAgent = "SecureTransport";
     request.ContentType = @"application/x-www-form-urlencoded";
     request.Method = WebRequestMethods.Http.Post;

     bool loggedin = false;
     try
     {
         // first need to log in
         string postData = "user=" + userName + "&Password=" + pass;
         byte[] postBuffer = System.Text.Encoding.GetEncoding(1252).GetBytes(postData);
         request.ContentLength = postBuffer.Length;
         Stream newStream = request.GetRequestStream();
         // Send the data.
         newStream.Write(postBuffer, 0, postBuffer.Length);
         newStream.Close();

         using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
         {
             // Get the stream containing content returned by the server.
              if (response.StatusCode == HttpStatusCode.OK)
              {
                  loggedin = true;
              }
              response.Close();
          }

我得到的回复是正确的 - 所以我似乎成功登录了。 但是,我需要转到另一个网址来获取文件https:///xxx.yyy.zzz/myfile.zip

 HttpWebRequest requestToGetFile = (HttpWebRequest)WebRequest.Create("https:///xxx.yyy.zzz/myfile.zip");
 requestToGetFile.Method = WebRequestMethods.Http.Get;
 requestToGetFile.CookieContainer = cookieJar;

 requestToGetFile.UserAgent = "SecureTransport";
 requestToGetFile.ContentType = @"application/octet-stream";
 using (HttpWebResponse responseToGetFile = (HttpWebResponse)requestToGetFile.GetResponse())
 {
    if (responseToGetDir.StatusCode != HttpStatusCode.OK)
    {    
       ...
    }
 }

我总是得到异常System.Exception:System.Net.WebException:远程服务器返回错误:(501)Not Implemented。在System.Net.HttpWebRequest.GetResponse()

我已经阅读了所有关于此错误的信息 - 似乎问题应该是我得到的方式 - 请求中有一些东西在服务器上没有正确处理 - 但我不知道看看有什么不对。

2 个答案:

答案 0 :(得分:1)

“未实现”是因为您要为GET请求指定ContentType。它对服务器没有任何意义(它主要在POST请求期间使用,并且您希望提交有效负载,例如XML)。您需要检查正确内容类型的响应以确保获得zip文件但是要发出请求,您必须删除该ContentType规范。

我认为这也是MisterZimbu在评论中指出的内容。 :)

答案 1 :(得分:0)

问题出在postData中。显然,远程服务器不喜欢“user =”+ userName +“&amp; Password =”+ pass;刺痛 - 它正在期待这个刺痛“user = ID&amp; Password = Pass”。哪个没有意义,但这就是我被告知并且它有效。 非常感谢你的建议。 珍妮