如何通过自定义httpmodule进行MVC认证

发布于 2024-10-01 10:49:44 字数 818 浏览 4 评论 0原文

拥有一个遗留应用程序,然后从那里调用我的 MVC 应用程序。 我计划使用自定义httpmodule [AuthenticationModule 类继承IHttpModule]。在 Init 中,我连接了 BeginRequest 并执行 FormAuthenication 操作...

     private void Application_BeginRequest(Object source, EventArgs e) {

         // Do my own authetication and issue FormAuthentication Ticket
    }

在 web.config 中:

    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules runAllManagedModulesForAllRequests="true">
        <add name="AuthenticationModule" type="RealProperty.LegacySecurity.AuthenticationModule, RealProperty.LegacySecurity" preCondition="ManagedHandler"/>
    </modules>

但是我的 AuthenticationModule 在调试中从未着火... (1) 谁能解释一下为什么它没有被调用? (2) 在BeginRequest中进行身份验证是否正确?

Have a legacy application and from there, my MVC application is called.
I planned to use custom httpmodule [AuthenticationModule class inherites IHttpModule]. In Init, I hooked up BeginRequest and do my FormAuthenication stuff...

     private void Application_BeginRequest(Object source, EventArgs e) {

         // Do my own authetication and issue FormAuthentication Ticket
    }

In web.config:

    <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules runAllManagedModulesForAllRequests="true">
        <add name="AuthenticationModule" type="RealProperty.LegacySecurity.AuthenticationModule, RealProperty.LegacySecurity" preCondition="ManagedHandler"/>
    </modules>

But my AuthenticationModule never got fire in debug...
(1) Can anyone explain why it isn't got called?
(2) Is it correct to do my authentication in BeginRequest?

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

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

发布评论

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

评论(1

高跟鞋的旋律 2024-10-08 10:49:44

确保 Web.config 文件中包含这两个部分:

<system.web>
  <httpModules>
    <add name="MyAuthenticationModule" type="Ns.To.MyAuthenticationModule, MyAssembly" />
  </httpModules>
</system.web>

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <add name="MyAuthenticationModule" type="Ns.To.MyAuthenticationModule, MyAssembly" />
  </modules>
</system.webServer>

Make sure you have both sections in your Web.config file:

<system.web>
  <httpModules>
    <add name="MyAuthenticationModule" type="Ns.To.MyAuthenticationModule, MyAssembly" />
  </httpModules>
</system.web>

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <add name="MyAuthenticationModule" type="Ns.To.MyAuthenticationModule, MyAssembly" />
  </modules>
</system.webServer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文