我可以限制 ASP.net HttpHandler 范围吗?

发布于 2024-09-11 07:14:37 字数 287 浏览 9 评论 0原文

我有一个应用程序依赖于我创建的通用 HttpHandler,并且它工作正常。问题在于,IIS 中的同一文件夹下还有许多其他应用程序,而这些其他应用程序不需要使用也不知道(必须不知道)此处理程序。 但是,我在其中注册的 Web.Config 最终会应用于同一级别的所有文件夹和所有子文件夹,而这是我想要避免的。

不幸的是,更改 IIS 内应用程序的结构是不可能的。

我想到使用 <地点> Web.config 上的标记,但我的印象是它只更改访问权限,而不更改可见性。

关于如何克服这个问题有什么建议吗?

I have an application that depends on a generic HttpHandler I created, and it works fine. The problem is that that there are many other applications under the same folder in IIS, and these other apps don't need to use and don't know (mustn't know) about this handler.
However, the Web.Config in which I register it ends up applying to all folders on the same level and all subfolders, and this is what I want to avoid.

Changing the structure of the apps inside IIS is not a possibility, unfortunately.

I thought of using the < location > tag on Web.config, but I'm under the impression it only changes rights to access and not visibility.

Any suggestions on how this can be overcome?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

蒗幽 2024-09-18 07:14:37

您可以通过检查将要通过过滤器的文件来将自定义过滤器应用于 HttpHandler,并仅保留您需要的文件。

您可以获得将要传递 HttpHandler 的文件名,

HttpContext.Current.Request.Path

在这个文件名中您可以检查任何内容,目录,文件,等等。

希望这有帮助。

You can apply a custom filter to your HttpHandler by checking the file that is going to pass by your filter, and keep only the one you need.

You can get the file name that is going to pass your HttpHandler by

HttpContext.Current.Request.Path

In this file name you can check for anything, for a directory, for a file, for what ever.

Hope that this help.

岁月如刀 2024-09-18 07:14:37

HttpHandler 是在应用程序级别配置的。您所说的这些子文件夹是真正独立的应用程序吗?如果没有,你就无能为力......不过阿里斯托斯的建议可能是可行的。如果它们确实是应用程序,您只需从这些应用程序中专门删除处理程序即可。

http://msdn.microsoft.com/en-我们/库/e0dzxdza%28VS.71%29.aspx

HttpHandlers are configured at the application level. Are these subfolders you speak of really separate applications? If not, there's not much you can do about it... Aristos' suggestion might be viable though. If they are really applications, you'll just have to specifically remove the handler from those applications.

http://msdn.microsoft.com/en-us/library/e0dzxdza%28VS.71%29.aspx

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