4

web.config 看起来像:


   <system.web>
   <httpModules>
  <add name="DotNetCasClient" type="DotNetCasClient.CasAuthenticationModule,DotNetCasClient"/>
    </httpModules>
  </system.web>
     <system.webServer>
     <modules>
    <remove name="DotNetCasClient"/>
    <add name="DotNetCasClient" type="DotNetCasClient.CasAuthenticationModule,DotNetCasClient"/>
      </modules>
 </system.webServer>

在 C# 代码中:

  [assembly: PreApplicationStartMethod(typeof(CasClientStart), "Start")]

 namespace Dev.CasClient
 {

public static class CasClientStart
{

    /// <summary>
    ///     Starts the application
    /// </summary>
    public static void Start()
    {
        if( !..... Registered (DotNetCasClient) In Web.config)
        DynamicModuleUtility.RegisterModule(typeof(DotNetCasClient));

    }
   }
   }

如何从 web.config 读取 httpmodule?在动态注册模块之前,我想首先检查 Web.confg。


我的解决方案,

   // the Final Solution
    public static void Start()
    {
       var IWantReg = typeof(CasClientModule).FullName;
        var Configuration = WebConfigurationManager.OpenWebConfiguration("~");
    if (HttpRuntime.UsingIntegratedPipeline)
    {
        var websermodules = Configuration.GetSection("system.webServer");

        var xml = websermodules.SectionInformation.GetRawXml();

        XDocument xmlFile = XDocument.Load(new StringReader(xml));
        IEnumerable<XElement> query = from c in xmlFile.Descendants("modules").Descendants("add") select c;

        foreach (XElement band in query)
        {
            var attr = band.Attribute("type");

            var strType = attr.Value.Split(',').First();

            if (strType.ToLower() == IWantReg.ToLower())
                return;
        }
    }
    else
    {
        object o = Configuration.GetSection("system.web/httpModules");
        HttpModulesSection section = o as HttpModulesSection;
        var models = section.Modules;

        foreach (HttpModuleAction model in models)
        {
            if (model.Type.Split(',').First() == IWantReg)
                return;
        }
    }


    DynamicModuleUtility.RegisterModule(typeof(CasClientModule));

}

最终解决了这个问题,分别通过集成和标准格式的方式。感谢朋友们的帮助。</p>

4

2 回答 2

2

这对你有用吗?(未经测试)

Configuration Configuration =  WebConfigurationManager.OpenWebConfiguration("~");
object o = Configuration.GetSection("system.web/httpModules");
HttpModulesSection section = o as HttpModulesSection;
var kvp = section.CurrentConfiguration.AppSettings.Settings["Name"];
于 2013-07-18T04:12:09.213 回答
0

尝试使用类似的东西

(HttpModulesSection)ConfigurationManager.GetSection("system.web/httpModules");

这将读取 web.config 文件的模块部分。如果您只想读取加载的模块,请使用:

HttpModuleCollection modules = HttpContext.Current.ApplicationInstance.Modules;
foreach (string moduleKey in modules.Keys)
{
    IHttpModule module = modules[moduleKey];
    // Do what you want with the loaded module
}

更多信息: 检测是否加载了 HttpModule

于 2013-07-18T04:15:50.393 回答