IIS7 和 Visual Studio 2010 中的 HttpHandler
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 ASP.NET MVC 还是 System.Web.Routing?
是否有类似的内容
您的
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
in your
RegisterRoutes()
function in yourHttpApplication
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 thesystem.web
section of theWeb.config
file? (In IIS7, this goes under thesystem.webServer
section, but I am not sure if newer versions of Cassini will look there.)