【问题标题】:how to setup Elmah for asp.net 1.1?如何为 asp.net 1.1 设置 Elmah?
【发布时间】:2010-05-21 18:51:52
【问题描述】:

我正在尝试为 asp.net 1.1 应用程序设置 elmah。 我的 web.config 中有以下条目

<httpHandlers>
        <add verb="POST,GET,HEAD" path="elmah.axd" type="Elmah.ErrorLogPageFactory, Elmah" />
    </httpHandlers>

    <httpModules>
        <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
    </httpModules>

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

我错过了什么吗?

【问题讨论】:

  • 添加您遇到的错误会很有帮助。
  • 描述:处理服务该请求所需的配置文件时出错。请查看下面的具体错误详细信息并适当地修改您的配置文件。解析器错误消息:无法识别的配置节 'configSections' 源错误:第 11 行: 第 12 行:第 13 行: 第 14 行: 第 15 行:
    源文件:c:\inetpub\wwwroot\LearnElmah\web.config 行:13

标签: asp.net elmah


【解决方案1】:

我们需要将错误记录到 XML 文件中,并且它应该可以从远程位置获得。我的 web.config 看起来

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

    <httpModules>
        <add name="ErrorLog" type="Elmah.ErrorLogModule, Elmah"/>
    </httpModules>
    <!--
    <elmah>
        <security allowRemoteAccess="yes" />        
        <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="C:\Inetpub\wwwroot\LearnElmah\App_Data\Elmah" />
    </elmah>
    -->

<!--  DYNAMIC DEBUG COMPILATION
      Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
      false will improve runtime performance of this application. 
      Set compilation debug="true" to insert debugging symbols (.pdb information)
      into the compiled page. Because this creates a larger file that executes
      more slowly, you should set this value to true only when debugging and to
      false at all other times. For more information, refer to the documentation about
      debugging ASP.NET files.
-->

<compilation 
     defaultLanguage="c#"
     debug="true"
/>

<!--  CUSTOM ERROR MESSAGES
      Set customErrors mode="On" or "RemoteOnly" to enable custom error messages, "Off" to disable. 
      Add <error> tags for each of the errors you want to handle.

      "On" Always display custom (friendly) messages.
      "Off" Always display detailed ASP.NET error information.
      "RemoteOnly" Display custom (friendly) messages only to users not running 
       on the local Web server. This setting is recommended for security purposes, so 
       that you do not display application detail information to remote clients.
-->
<customErrors 
mode="Off" 
/> 

<!--  AUTHENTICATION 
      This section sets the authentication policies of the application. Possible modes are "Windows", 
      "Forms", "Passport" and "None"

      "None" No authentication is performed. 
      "Windows" IIS performs authentication (Basic, Digest, or Integrated Windows) according to 
       its settings for the application. Anonymous access must be disabled in IIS. 
      "Forms" You provide a custom form (Web page) for users to enter their credentials, and then 
       you authenticate them in your application. A user credential token is stored in a cookie.
      "Passport" Authentication is performed via a centralized authentication service provided
       by Microsoft that offers a single logon and core profile services for member sites.
-->
<authentication mode="Windows" /> 

<!--  AUTHORIZATION 
      This section sets the authorization policies of the application. You can allow or deny access
      to application resources by user or role. Wildcards: "*" mean everyone, "?" means anonymous 
      (unauthenticated) users.
-->

<authorization>
    <allow users="*" /> <!-- Allow all users -->
        <!--  <allow     users="[comma separated list of users]"
                         roles="[comma separated list of roles]"/>
              <deny      users="[comma separated list of users]"
                         roles="[comma separated list of roles]"/>
        -->
</authorization>

<!--  APPLICATION-LEVEL TRACE LOGGING
      Application-level tracing enables trace log output for every page within an application. 
      Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
      trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
      application trace log by browsing the "trace.axd" page from your web application
      root. 
-->
<trace
    enabled="false"
    requestLimit="10"
    pageOutput="false"
    traceMode="SortByTime"
    localOnly="true"
/>

<!--  SESSION STATE SETTINGS
      By default ASP.NET uses cookies to identify which requests belong to a particular session. 
      If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
      To disable cookies, set sessionState cookieless="true".
-->
<sessionState 
        mode="InProc"
        stateConnectionString="tcpip=127.0.0.1:42424"
        sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
        cookieless="false" 
        timeout="20" 
/>

<!--  GLOBALIZATION
      This section sets the globalization settings of the application. 
-->
<globalization 
        requestEncoding="utf-8" 
        responseEncoding="utf-8" 

/>

【讨论】:

  • 这是对您问题的回答还是澄清?
【解决方案2】:

您还需要定义要使用的记录器类型的 elmah 部分,并且根据您使用的记录器,可能是连接字符串:

<elmah>
    <security allowRemoteAccess="yes" />        
    <!--<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data/Elmah" />-->
    <errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="elmah" applicationName="MyApp" />
</elmah>

<connectionStrings>
    <add name="elmah" connectionString="" providerName="System.Data.SqlClient" />
</connectionStrings>

【讨论】:

  • 我收到以下错误 第 23 行: 第 24 行:
  • 解析器错误信息:文件'Elmah'的格式无效。
【解决方案3】:

这是一个非常晚的条目,但是任何尝试使用 .NET 1.1 和 Visual Studio 2003 设置 ELMAH 的人,请浏览到以下位置:

https://code.google.com/p/elmah/source/browse/samples/web.config?repo=1x&r=c1d14a9e1626b74a4a606bae8bf9ae829ec641c5

【讨论】:

    猜你喜欢
    • 2012-04-24
    • 2017-12-09
    • 1970-01-01
    • 1970-01-01
    • 2020-07-09
    • 2010-10-14
    • 2017-05-03
    • 1970-01-01
    • 2011-04-30
    相关资源
    最近更新 更多