iis7 下的 Web 应用程序的许多应用程序域

发布于 2024-07-22 07:41:11 字数 132 浏览 9 评论 0原文

我有一个在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

樱花坊 2024-07-29 07:41:11

看你自己找到了解决方案:)

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

一场春暖 2024-07-29 07:41:11

我正在将输出文件写入 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文