用于Javascript应用程序IIS的HTTP模块

时间:2018-03-11 06:33:56

标签: angular iis httpmodule

IIS HTTP模块只能配置IIS中的ASP.Net / MVC应用程序吗?因为我有Angular 2应用程序(仅限Html和js)并将其部署在IIS中,所以它运行良好但我需要在访问Angular应用程序URL时读取请求标头。

所以,我正在考虑按照这个link

创建一个HTTP模块

在我的Angular应用程序web.config文件中,创建了一个模块元素,如下所示。

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="AngularJS" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
        </rule>
      </rules>
    </rewrite>
        <modules>
            <add name="MyModule" type="SiteMinderTokenReader.MyModule" />
        </modules>
  </system.webServer>
</configuration>

但模块无法按预期工作

这是我的模块代码。

namespace SiteMinderTokenHandler
{
    public class MyModule : IHttpModule
    {
        public void Dispose()
        {

        }

        public void Init(HttpApplication context)
        {
            context.BeginRequest += new EventHandler(context_BeginRequest);
            context.EndRequest += new EventHandler(context_EndRequest);
        }

        void context_BeginRequest(object sender, EventArgs e)
        {

            HttpApplication httpApplication = (HttpApplication)sender;
            httpApplication.Context.Response.Write("<h1>The header....</h1>");
        }

        void context_EndRequest(object sender, EventArgs e)
        {
            HttpApplication httpApplication = (HttpApplication)sender;
            httpApplication.Context.Response.Write("<h6>The footer....</h6>");
        }

    }
}

1 个答案:

答案 0 :(得分:0)

您的模块无法运行,因为您正在提供静态内容。为了使您的模块针对所有内容运行,您需要添加此属性。

<modules runAllManagedModulesForAllRequests="true">
   <add name="MyModule" type="SiteMinderTokenReader.MyModule"/>
</modules>
  

runAllManagedModulesForAllRequests = “真”

这将为所有请求运行您的模块,甚至是静态内容。另外,请确保您的“类型”是正确的。包含完整的命名空间。