asp.net – 什么是错误代码是0x80070001?那我该怎么解决呢?

前端之家收集整理的这篇文章主要介绍了asp.net – 什么是错误代码是0x80070001?那我该怎么解决呢?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的Web服务收到此错误

An error occurred while communicating with the remote host. The error code is 0x80070001

奇怪的是,服务器上的cpu和内存使用量不高。

详细的错误信息:

错误信息:

An error occurred while communicating with the remote host. The error code is 0x80070001.

堆栈跟踪:

at System.Web.Hosting.IIS7WorkerRequest.RaiseCommunicationError(Int32 result,Boolean throwOnDisconnect)<br />
at System.Web.Hosting.IIS7WorkerRequest.ReadEntityCoreSync(Byte[] buffer,Int32 offset,Int32 size)<br />
at System.Web.Hosting.IIS7WorkerRequest.ReadEntityBody(Byte[] buffer,Int32 size) <br />
at System.Web.HttpRequest.GetEntireRawContent()<br />
at System.Web.HttpRequest.get_InputStream()<br />
at Service.Upload() in c:\inetpub\path\Service.aspx.cs:line 213

Google搜索后:

Thread on Microsoft Forums和我禁用卸载网卡,没有改变:(

Question on Stack OverFlow没有答案:(

如何解决这个问题?

更多信息

内部异常消息:句柄无效。 (HRESULT异常:0x80Thread on Microsoft Forums6(E_HANDLE))

很重要

这只是一个Web应用程序,但如果我使用一个网站,没有发生任何事情(没有错误)。

经过很多研究,我认为这个错误是由web.config文件造成的。

解决方法

这是因为您的代码中存在内部内存泄漏。因此,它不能在内存中创建一个新对象。

猜你在找的asp.Net相关文章