HttpException-Chrome中超过了最大请求长度

本文关键字:请求 中超 过了 HttpException-Chrome | 更新日期: 2023-09-27 18:20:19

我正在ASP.NET MVC 3中开发一个上传程序。我正在使用AJAX上传控件(http://valums.com/ajax-upload/)。当我尝试通过IE上传一个大文件时,一切都正常。然而,当我试图通过Chrome上传一个大文件时,我在服务器上收到一个异常,上面写着"超过了最大长度"。我添加了以下配置设置,认为它可以解决这个问题:

<httpRuntime maxRequestLength="2147483647" executionTimeout="3600" />

但这并没有解决问题。我的操作代码如下:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult UploadFiles(IEnumerable<HttpPostedFileBase> files)
{
  string home = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "files");
  if (String.IsNullOrEmpty(Request["qqFile"]))
  {
    string filename = string.Empty;
    foreach (string file in Request.Files)
    {
      HttpPostedFileBase postedFile = (HttpPostedFileBase)(Request.Files[file]);
      if (postedFile.ContentLength == 0)
        continue;
      filename = Path.Combine(home, Path.GetFileName(postedFile.FileName));
      if (Directory.Exists(baseDirectory) == false)
        Directory.CreateDirectory(baseDirectory);
      postedFile.SaveAs(filename);
    }
  }
  else
  {
    // MY PROBLEM IS IN HERE
    string filename = Path.Combine(baseDirectory, Request["qqFile"]);
    byte[] buffer = new byte[Request.InputStream.Length];
    Request.InputStream.Read(buffer, 0, buffer.Length);
    System.IO.File.WriteAllBytes(filename, buffer);
  }
  return Json(new { success = true }, "text/html");
}

为什么我不能通过Chrome上传更大的文件?

HttpException-Chrome中超过了最大请求长度

您可以尝试设置maxAllowedContentLength

<system.webServer>
    <security>
        <requestFiltering>
             <requestLimits maxAllowedContentLength="X" />
        </requestFiltering>
    </security>
</system.webServer>