3

更新:问题解决了。继续阅读。

知道为什么显然不可能再添加自定义 IHttpModules 了吗?

我的问题与:HttpModule.Init - 在 IIS7 集成模式下安全添加 HttpApplication.BeginRequest 处理程序有关 但是这个问题相当陈旧,没有答案,并且没有 SharePoint 上下文。我可以将我的HttpModule添加到任何标准的 ASP.NET WebForms 页面。

SharePoint 托管在 IIS 8 中。AppPool 在集成模式下运行。框架级别为 4.0+。

namespace My.Namespace
{
    using System;
    using System.Web;

    public class CustomHttpModule : IHttpModule
    {
        private static readonly object mutex = new object();
        private static bool _isInitialized;

        public void Init(HttpApplication context)
        {
            if (!_isInitialized)
            {
                lock (mutex)
                {
                    if (_isInitialized) return;

                    context.BeginRequest += BeginRequest;
                    _isInitialized = true;
                }
            }
        }

        private void BeginRequest(object sender, EventArgs e)
        {   
        }

        public void Dispose()
        {
        }
    }
}

结果:

[NullReferenceException:对象引用未设置为对象的实例。] System.Web.PipelineModuleStepContainer.GetEventCount(RequestNotification 通知,布尔 isPostEvent)+30
System.Web.PipelineStepManager.ResumeSteps(异常错误)+1098
System.Web.HttpApplication。 BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) +135
System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +604

web.config 如下所示:

<system.webServer>
<!-- further elements omitted -->
<modules runAllManagedModulesForAllRequests="true">
  <remove name="AnonymousIdentification" />
  <remove name="FileAuthorization" />
  <remove name="Profile" />
  <remove name="WebDAVModule" />
  <remove name="Session" />
  <add name="SPNativeRequestModule" preCondition="integratedMode" />
  <add name="SPRequestModule" preCondition="integratedMode" type="Microsoft.SharePoint.ApplicationRuntime.SPRequestModule, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  <add name="SharePoint14Module" preCondition="integratedMode" />
  <add name="StateServiceModule" type="Microsoft.Office.Server.Administration.StateModule, Microsoft.Office.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="PublishingHttpModule" type="Microsoft.SharePoint.Publishing.PublishingHttpModule, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="DesignHttpModule" preCondition="integratedMode" type="Microsoft.SharePoint.Publishing.Design.DesignHttpModule, Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="FederatedAuthentication" type="Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="SessionAuthentication" type="Microsoft.SharePoint.IdentityModel.SPSessionAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="SPWindowsClaimsAuthentication" type="Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="SPApplicationAuthentication" type="Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule, Microsoft.SharePoint.IdentityModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
  <add name="Session" type="System.Web.SessionState.SessionStateModule" />
  <add name="CustomModule" type="My.Namespace.CustomHttpModule, My.Namespace, Version=1.0.0.0, Culture=neutral, PublicKeyToken=066b2229567b6747" />
</modules>
<!-- further elements omitted -->
</system.webServer>

一旦我不再附加到 BeginRequest 事件,页面就会再次工作。但显然我的 http 模块变得毫无用处。

编辑 2013.09.19: Init() 在应用程序启动时被调用两次。如果我仅在第二次调用时附加我的事件,则应用程序可以工作,但事件不会触发。

编辑 2013.09.20:问题大概解决了。我的 Init() 方法被触发了两次(中间没有调用 Dispose())这一事实让我假设我的 IHttpModule 实际上可能有两个共存的实例。虽然我之前的观察表明第二个实例可以附加事件(不触发,但对应用程序也没有负面影响) - 反之亦然(我的静态 _isInitialized “锁定”就是这种情况) .

**因此 IHttpModule 的两个实例都需要具有相同的“配置”(附加事件处理程序)。运行多个 HttpApplication 实例是完全正常的。这是 ASP.NET(或 IIS)在内部为优化目的所做的事情。这是要记住的关键:)

4

1 回答 1

0

问题解决了。已编辑的问题。请参阅编辑 2013.09.20

于 2013-09-20T09:21:11.370 回答