gpt4 book ai didi

asp.net - 在 ASP.NET WebForms 中通过 HTTPS 远程访问 elmah.axd 时出现 "Forbidden"错误

转载 作者:行者123 更新时间:2023-12-01 23:01:26 27 4
gpt4 key购买 nike

我正在尝试将 ELMAH 集成到 webforms 应用程序中。由于我不允许更改的原因,整个应用程序必须只能通过 HTTPS 访问。

应用程序正在运行,但我们无法远程访问 ELMAH 的日志文件。我已关注 this指令以允许远程访问但没有成功。

这是当前生产 web.config 文件中的相关配置:

<configuration>
<configSections>
<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>
<security allowRemoteAccess="yes" requirePermission="false" />
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
</elmah>

<system.web>

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

还有什么我可以做的吗?任何人都知道通过HTTPS访问ELMAH的日志文件是否存在某种限制?

请注意,我们当前使用的是 IIS 6.0 和 .NET framework 2.0。

最佳答案

解决方案:
在您的配置文件中:
将 0 更改为 1

<security allowRemoteAccess="0" />


<security allowRemoteAccess="1" />

这就像一个魅力。

享受!!

关于asp.net - 在 ASP.NET WebForms 中通过 HTTPS 远程访问 elmah.axd 时出现 "Forbidden"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4694939/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com