iis7 下的 Web 应用程序的许多应用程序域
我有一个在 iis7 上运行的单轨 Web 应用程序。 看起来两个并发请求是在两个不同的应用程序域上处理的! 据我所知,每个应用程序应该有一个应用程序域和多个http应用程序来处理请求...
我缺少什么吗? (也许配置?)
I have a monorail web application running on iis7. It appears like two concurrent requests are handled on two different appdomains! As far as I know, each application should have one appdomain and multiple httpapplications to handle requests...
Is there something I am missing? (configuration perhaps?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看你自己找到了解决方案:)
Asp.net 监视许多目录和文件的不同操作,这将导致 appdomain 卸载。 (global.asax、web.config、BIN、App_Code ++)
如果您想了解更多信息,请查看 msdn 上的此博客
blogs.msdn.com/tmarq/archive/2007/11/02/asp-net-file-change-notifications-exactly-which-files-and-directories-are-monitored.aspx
See you found the solution yourself :)
Asp.net watches a lot of directories and files for different actions, that will cause the appdomain to unload. (global.asax, web.config, BIN, App_Code ++)
If you want more information, take a look at this blog on msdn
blogs.msdn.com/tmarq/archive/2007/11/02/asp-net-file-change-notifications-exactly-which-files-and-directories-are-monitored.aspx
我正在将输出文件写入 Web 应用程序 bin 目录中的文件夹。 由于监视此文件夹,因此导致应用程序池回收,这就是在不同(新)应用程序域上处理第二个请求的原因。
出于某种原因,我认为只有 web.config、global.asax 被观看......
I was writing output files to a folder in the bin directory of the web application. Since this folder is watched, it caused the application pool to recycle and that's why the second request was handled on a different (new) appdomain.
For some reason I thought that only web.config, global.asax are watched...