I'm trying to integrate ELMAH in a webforms application. For reasons that I am not allowed to change, the whole application must be accessed only through HTTPS.
The application is working, but we cannot access ELMAH's log file remotely. I have followed this instructions in order to allow remote access with no success.
This is the related configuration currently in the production web.config file:
<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>
Is there anything else I could do? Anyone knows if there is some kind of restriction in accessing ELMAH's log file through HTTPS?
Notice that we are currently using IIS 6.0 and .NET framework 2.0.