http 处理程序示例在 .net 4、VS2010 cassini 中不起作用
我刚刚在一个新网站中尝试了这个简单的示例,以在 .net 4 中创建 http 处理程序:
http://msdn.microsoft.com/en-us/library/ms228090.aspx#Y700
它看起来很简单 - 我刚刚将 http 处理程序类复制到我的应用程序代码目录中 - 它只是响应.写出一些html。基本的东西。 web.config 条目甚至更简单:
<system.webServer>
<handlers>
<add verb="*" path="*.sample"
name="HelloWorldHandler"
type="HelloWorldHandler"/>
</handlers>
正如文章所示,我尝试在浏览器中请求 test.sample 但收到 404 错误。如果我创建 ashx 文件而不是类文件/Web 配置方法,则相同的代码会像魅力一样工作。
I just tried this simple example in a new web site to create an http handler in .net 4:
http://msdn.microsoft.com/en-us/library/ms228090.aspx#Y700
It looks so simple - I just copied the http handler class into my app code directory - it simply response.writes out some html. Basic stuff. The web.config entry is even simpler:
<system.webServer>
<handlers>
<add verb="*" path="*.sample"
name="HelloWorldHandler"
type="HelloWorldHandler"/>
</handlers>
As the article suggests, I've tried requesting test.sample in my browser but got a 404 error. The same code works like a charm if I create an ashx file instead of the class file/web config method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了 system.webserver 之外,您还需要将处理程序放入 system.web 的 httphandler 部分(IIS7+ 需要此功能)
You need to put the handler in the httphandler portion of the system.web in addition to the system.webserver (Which is needed for IIS7+)