在 IIS7 上从经典迁移到集成后出现警告
我已将我的 c# asp.net Web 应用程序从 .net 3.5 迁移到 .net 4.0,并将其运行的 IIS7 应用程序池更改为集成的而不是经典的。该网站运行良好,但我发现服务器事件日志中记录了以下警告:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 26/09/2011 11:19:10
Event time (UTC): 26/09/2011 10:19:10
Event ID: 5e750da6db8544feaede11ed88c072f6
Event sequence: 2
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/3/ROOT-2-129615059474458846
Trust level: Full
Application Virtual Path: /
Application Path: << REMOVED >>
Machine name: << REMOVED >>
Process information:
Process ID: 5864
Process name: w3wp.exe
Account name: << REMOVED >>\app_user
Exception information:
Exception type: NullReferenceException
Exception message: Object reference not set to an instance of an object.
at System.Web.HttpApplication.set_AsyncResult(HttpAsyncResult value)
at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
Request information:
Request URL: http://127.0.0.1/dummy.context
Request path: /dummy.context
User host address: 127.0.0.1
User:
Is authenticated: False
Authentication Type:
Thread account name: << REMOVED >>\app_user
Thread information:
Thread ID: 22
Thread account name: << REMOVED >>\app_user
Is impersonating: False
Stack trace: at System.Web.HttpApplication.set_AsyncResult(HttpAsyncResult value)
at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
Custom event details:
任何想法可能导致此问题,因为我对它可能是什么感到困惑?
I have migrated my c# asp.net web application from .net 3.5 to .net 4.0 and also changed the IIS7 application pool it runs to be Integrated rather than classic. The site runs fine but I have found the following warning been recorded in the server event log:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 26/09/2011 11:19:10
Event time (UTC): 26/09/2011 10:19:10
Event ID: 5e750da6db8544feaede11ed88c072f6
Event sequence: 2
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/3/ROOT-2-129615059474458846
Trust level: Full
Application Virtual Path: /
Application Path: << REMOVED >>
Machine name: << REMOVED >>
Process information:
Process ID: 5864
Process name: w3wp.exe
Account name: << REMOVED >>\app_user
Exception information:
Exception type: NullReferenceException
Exception message: Object reference not set to an instance of an object.
at System.Web.HttpApplication.set_AsyncResult(HttpAsyncResult value)
at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
Request information:
Request URL: http://127.0.0.1/dummy.context
Request path: /dummy.context
User host address: 127.0.0.1
User:
Is authenticated: False
Authentication Type:
Thread account name: << REMOVED >>\app_user
Thread information:
Thread ID: 22
Thread account name: << REMOVED >>\app_user
Is impersonating: False
Stack trace: at System.Web.HttpApplication.set_AsyncResult(HttpAsyncResult value)
at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
Custom event details:
Any ideas what may be causing this as I am stumped as to what it might be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
(技术难度:我无法为您的问题添加评论,但似乎我可以将其添加为答案)
我遇到了同样的错误。在此链接中 https://jira.springsource.org/browse/SPRNET-1456 他们说这是一个“不会被修复”的错误
(tech difficulty: I'm having trouble to add a comment to yr question but it seems I can add it as an ansewer)
I am experiencing the same error. In this link https://jira.springsource.org/browse/SPRNET-1456 they say it's a bug that "won't be fixed"
我遇到了这个错误并查看了事件查看器。在其他几个错误中,我遇到了一个和另一个错误(这是一个信息):
详细信息:
所以这是一个堆栈溢出。我猜您看到的错误只是另一个错误的产物。您应该尝试调查此其他错误。我并不是说它会像我的那样成为 stackoverflow,但它可能是其他东西。
I had this error and looked in the Event Viewer. Among several other errors, I had this one and another (which was an Information) :
details:
So it was a stackoverflow. I guess that the error you see is just an artifact of another error. You should try to investigate for this other error. I don't say it will be a stackoverflow like mine, but it could be something else.