我在IIS 7共享托管环境中有一个网站。它运行的是.NET 3.5。我有一个下载按钮从服务器下载文件。
当我在本地将此应用程序部署到IIS 6时,它运行正常。在IIS 7共享主机服务器上,发生异常。
句柄无效。 (HRESULT异常:0x80070006(E_HANDLE)) 描述:执行当前Web请求期间发生未处理的异常。请查看堆栈跟踪,以获取有关错误及其在代码中的起源位置的更多信息 System.Runtime.InteropServices.COMException:句柄无效。 (HRESULT异常:0x80070006(E_HANDLE))
COMException(0x80070006):句柄无效。 (来自HRESULT的异常:0x80070006(E_HANDLE))] [HttpException(0x80004005):与远程主机通信时发生错误。错误代码是0x80070006。]
如何解决这个问题?
string strRequest = Convert.ToString(Request.QueryString.Get("file"));
System.IO.FileInfo file = new System.IO.FileInfo(strRequest);
if (file.Exists)
{
Response.Clear();
Response.ContentType = ReturnExtension(System.IO.Path.GetExtension(file.Name));
Response.AppendHeader("Content-Disposition", "attachment; filename=" + file.Name);
Response.TransmitFile(strRequest);
Response.End();
HttpContext.Current.ApplicationInstance.CompleteRequest();
//DownloadFile(file.FullName, file.Name);
}
答案 0 :(得分:14)
创建.bat文件,输入以下命令并运行该文件。它将终止所有现有的Web服务器进程,并应该解决问题。我有同样的问题,它对我有用。非常感谢
taskkill /fi "imagename eq webdev.webserver40.exe"
答案 1 :(得分:12)
我在下面的链接中找到了修复:
if (file.Name == fileName)
{
Response.ClearContent();
Response.AddHeader("Content-Disposition", "attachment; filename=" + file.Name);
Response.AddHeader("Content-Length", file.Length.ToString());
Response.TransmitFile(file.FullName);
//Response.End(); Will raise that error. this works well locally but not with IIS
Response.Flush();//Won't get error with Flush() so use this Instead of End()
}
答案 2 :(得分:3)
我刚刚在我们的环境中解决了这个问题。我们启用了模拟,并将应用程序池作为ApplicationPoolIdentity运行。
问题是由于应用程序池标识没有对源文件的读访问权,即使模拟用户确实可以访问该文件。使这个难以解决的问题是,如果用户和应用程序池都没有访问权限,则会出现访问权限错误。
答案 3 :(得分:2)
System.IO.FileInfo file = new System.IO.FileInfo(strRequest);
你有
System.IO.FileInfo file = new System.IO.FileInfo(Server.MapPath(strRequest));
如果有帮助,请告诉我。
答案 4 :(得分:2)
在我的情况下,我试图写入并读取此文件:
var path = System.IO.Path.GetTempFileName();
我使用下面的代码并且它有效。我认为IIS用户缺少写入或读取临时文件的权限。
var path = Server.MapPath(@"~\App_Data\Stats");
Directory.CreateDirectory(path);
path = Path.Combine(path, String.Format("{0}.csv", Guid.NewGuid()));
using (var streamWriter = new StreamWriter(path))
using (var csvWriter = new CsvHelper.CsvWriter(streamWriter))
{
csvWriter.Configuration.Delimiter = csvWriter.Configuration.CultureInfo.TextInfo.ListSeparator;
csvWriter.WriteRecords(rounds);
}
return File(path, "text/csv", "Stats.csv");
答案 5 :(得分:0)
在我的情况下,这仅发生在特定用户登录上。每个其他用户都有它工作。
问题是用户的LoginEmail中有额外的空白区域。
这发生在MVC应用程序中,该应用程序使用Asp.net Identity和Impersonation从托管服务器上的目录下载excel文件。
奇怪的东西!