IIS7 和 Visual Studio 2010 中的 HttpHandler

发布于 2024-09-14 13:51:14 字数 152 浏览 7 评论 0原文

我正在尝试在 asp.net 4 网站中运行 httphandler (ashx)。

当我从 Visual Studio 集成服务器调用它时,它返回 404 错误。

如果我在配置到本地 IIS 的站点上调用它,它就会起作用。

有人可以帮忙吗?

I'm trying to run an httphandler (ashx) in a asp.net 4 website.

When I call it from Visual Studio integrated server, it returns a 404 error.

It works if I call it on the site configured into the local IIS.

Someone could help?

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

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

发布评论

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

评论(1

橘虞初梦 2024-09-21 13:51:14

您使用的是 ASP.NET MVC 还是 System.Web.Routing?

是否有类似的内容

routes.IgnoreRoute("{resource}.ashx/{*pathInfo}");

您的 HttpApplication 实例中的 RegisterRoutes() 函数中

?要记住的一件事是 Visual Studio 服务器事物通过托管管道运行所有请求。

httpHandler 是否添加到 Web.config 文件的 system.web 部分? (在 IIS7 中,这位于 system.webServer 部分下,但我不确定较新版本的 Cassini 是否会在那里查找。)

Are you using ASP.NET MVC, or System.Web.Routing?

Do you have something like

routes.IgnoreRoute("{resource}.ashx/{*pathInfo}");

in your RegisterRoutes() function in your HttpApplication instance?

One thing to keep in mind is that the Visual Studio server thingie runs all requests through the managed pipeline.

Is the httpHandler added to the system.web section of the Web.config file? (In IIS7, this goes under the system.webServer section, but I am not sure if newer versions of Cassini will look there.)

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