【问题标题】:I can't get my Elmah email filters to work我的 Elmah 电子邮件过滤器无法正常工作
【发布时间】:2012-05-29 12:50:20
【问题描述】:

我对以下 web.config 设置和 Elmah 有疑问。问题是,当我不想时,我仍然会收到有关公共操作方法问题的电子邮件。我使用的过滤器似乎不起作用。

我不完全确定 AND 和 OR 在 Elmah 电子邮件过滤中应该如何工作,尤其是因为这段代码是从我从其他开发人员那里获得的一些项目工作中截取的。

这些标签旨在防止通过电子邮件报告任何包含索引、缓存或登录字样的错误。

谁能帮忙?

<configuration>
    <configSections>
        <!--Elmah sectionGroup-->
        <sectionGroup name="elmah">
            <section name="security" requirePermission="false" type="Elmah.SecuritySectionHandler, Elmah" />
            <section name="errorLog" requirePermission="false" type="Elmah.ErrorLogSectionHandler, Elmah" />
            <section name="errorMail" requirePermission="false" type="Elmah.ErrorMailSectionHandler, Elmah" />
            <section name="errorFilter" requirePermission="false" type="Elmah.ErrorFilterSectionHandler, Elmah" />
        </sectionGroup>
  </configSections>  

 <elmah>
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
<errorMail from="" to="" subject="Error(Elmah)" async="true " />
    <security allowRemoteAccess="1"/>
<errorFilter>
  <test>
    <or>
        <is-type binding="BaseException" type="System.InvalidOperationException" />
</or>
<or>
    <regex binding="Exception.Message" pattern="(?ix: \b potentially \b.+?\b dangerous \b.+?\b value \b.+?\b detected \b.+?\b client \b )" />
</or>
<or>
    <regex binding="Exception.Message" pattern="(?ix: \b public action method     'Index' was not found on controller \b )" />
    <regex binding="Exception.Message" pattern="(?ix: \b public action method 'cache' was not found on controller \b )" />
    <regex binding="Exception.Message" pattern="(?ix: \b public action method 'Login' was not found on controller \b )" />
</or>
  </test>
</errorFilter>
  </elmah>  
  <location path="elmah.axd">
  </location>  
  <system.web>
  </system.web>
 <system.webServer>    
<modules runAllManagedModulesForAllRequests="true">
<add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah" />
<add name="ErrorMail" type="Elmah.ErrorMailModule, Elmah" />
<add name="ErrorFilter" type="Elmah.ErrorFilterModule, Elmah" />
</modules>
<handlers>
  <add name="httpHandler" verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
   </handlers>
  </system.webServer>
</configuration>

【问题讨论】:

    标签: c# .net elmah


    【解决方案1】:

    test 元素只能有一个子断言,因此在它下面有多个or 元素意味着除了第一个之外的所有元素都将被忽略。根据您的描述,您的 test 元素似乎应该是这样的:

    <test>
      <or> 
        <is-type binding="BaseException" type="System.InvalidOperationException" /> 
        <regex binding="Exception.Message" pattern="(?ix: \b potentially \b.+?\b dangerous \b.+?\b value \b.+?\b detected \b.+?\b client \b )" /> 
        <and> 
          <regex binding="FilterSourceType.Name" pattern="mail" />
          <regex binding="Exception.Message" pattern="(?ix: \b public \s action \s method \s '(Index|cache|Login)' \s was \s not \s found \s on \s controller \b )" /> 
        </and>
      </or> 
    </test>
    

    请注意,我还继续将三个 regex 元素合二为一,并修复了模式以正确分隔单词(\b 位于边缘,\s 位于中间)。

    【讨论】:

      猜你喜欢
      • 2012-07-12
      • 1970-01-01
      • 2018-04-27
      • 2017-04-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-09-15
      相关资源
      最近更新 更多