{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "I am trying to zip a list of files and response to the outputstream, it works for total size less than 30MB but if over, it just hangs there and do nothing...\n\n```\nusing (ZipFile zip = new ZipFile())\n  {\n      foreach (SubmissionInfo submission in submissions)\n        {\n            if (submission.SubmissionType == SubmissionType.File)\n              {\n                   using (WindowsIdentity.Impersonate(IntPtr.Zero))\n                       {\n                          string strSrcFile = TaskService.SubmissionFolderPath + \"\\\\\" + submission.StorageFileName;\n                           zip.AddFile(strSrcFile).FileName = submission.FullName + \" - \" + submission.FileName;\n                        }\n                                    \n               }\n          }\n\n        string strZipFilename = task.Title + \".zip\";\n\n        response.Clear();\n        response.ContentType = \"application/zip\";\n        response.AppendHeader(\"Content-disposition\", \"attachment; filename=\" + strZipFilename.Replace(\" \", \"_\")); // Firefox doesn't like spaces in filename\n         using (WindowsIdentity.Impersonate(IntPtr.Zero))\n              {\n                    zip.Save(response.OutputStream);\n              }\n     }\n```",
    "LastUpdatedDate": "2014-06-16T00:51:43.13-07:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Unassigned",
      "Severity": 0,
      "Id": 0
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2014-06-16T00:49:40.463-07:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "Failure to response large output stream",
    "Type": {
      "Name": "Unassigned",
      "Id": 5
    },
    "VoteCount": 1,
    "Id": 16887
  },
  "FileAttachments": [],
  "Comments": []
}