- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我像这样使用 FilePathResult:
return new FilePathResult(path, "text/xml");
我的路径是我们网络上其他地方的路径。这会导致服务器错误。当我检查服务器上的事件日志时,我可以看到这个错误条目:
TransmitFile failed. File Name: \\our\path\to\the\file\filename.dfxp, HRESULT: 0x80070005
同时在事件查看器中也会记录一条警告:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 5/30/2013 4:05:03 PM
Event time (UTC): 5/30/2013 9:05:03 PM
Event ID: d77e5b799b87455f9f4daa7367f1bad2
Event sequence: 33
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/3/ROOT-1-130144212630349792
Trust level: Full
Application Virtual Path: /
Application Path: C:\inetpub\wwwroot\my.site.folder\
Machine name: MyMachine
Process information:
Process ID: 3408
Process name: w3wp.exe
Account name: IIS APPPOOL\my.site.name
Exception information:
Exception type: COMException
Exception message: The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))
Request information:
Request URL: http://my.site.com/Download/fca4fd06-d942-4ee8-8fe3-7ec7aa26938f
Request path: /Download/fca4fd06-d942-4ee8-8fe3-7ec7aa26938f
User host address: 10.0.70.17
User: my@user.com
Is authenticated: True
Authentication Type: Forms
Thread account name: OURDOMAIN\SA-ACCOUNT
Thread information:
Thread ID: 14
Thread account name: OURDOMAIN\SA-ACCOUNT
Is impersonating: False
Stack trace:
运行应用程序的我的服务帐户具有文件夹位置的读取权限。我没有在 ASP.NET MVC 世界的其他地方发现这个问题,所以我想我会在这里问。
最佳答案
现在下结论可能还为时过早,但是,似乎从 FilePathResult
更改为 FileContentResult
已经解决了问题。
var fileBytes = System.IO.File.ReadAllBytes(fileInfo.FullName);
return new FileContentResult(fileBytes, "text/xml")
我不确定 FilePathResult 在内部最终做了什么,但是,使用 ReadAllBytes
读取文件似乎可以避免这个问题。
关于asp.net-mvc - 具有网络路径的 FilePathResult 抛出 COMException(句柄无效),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16858512/
我设置了 Helm 柄和 Helm 柄。我有tiller-deploy。昨天,我可以定期运行了。但今天我收到此错误消息 Error: could not find a ready tiller pod
我以前已将分er安装到特定的 namespace 中。 我设置了一个环境变量来设置'tiller'命名空间-但我不记得该环境变量的名称-而且似乎无法通过网络搜索找到它。 这是什么 key ? 最佳答案
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
我正在尝试找到如何在某个 fragment 相关场景中定义 Hilt 的解决方案。我有以下设置: Activity 父 fragment 1 子 fragment 1 子 fragment 2 ...
Hilt 指出如果没有@Provides 注解就不能提供这个接口(interface): interface PlannedListRepository { fun getAllLists()
我的问题非常简单明了:两个注释/示例之间有什么区别: 例子一 @Singleton class MySingletonClass() {} @Module @InstallIn(FragmentCom
我是一名优秀的程序员,十分优秀!