我有一个httphandler,它已编译到从Web api项目引用的类库中。我已使用以下元素将其注册到Web api项目的web.config中。但是,当我尝试从浏览器调用httphandler时,它显示为找不到资源。
在测试中,我向Web api项目添加了一个httphandler ashx文件,并能够从浏览器中毫无问题地调用它。任何建议都非常感谢。谢谢。
<system.webServer>
<handlers>
<add name="SessionMgmtHandler" path="SessionMgmtHandler.ashx" type="WF.Common.SessionMgmt.SessionMgmtHandler" verb="*" preCondition="integratedMode" />
</handlers>
</system.webServer>