You are attempting to access ELMAH from a remote machine whereas it is currently configured not to allow remote access. You can enable remote access by adding the following sections to this web site's configuration file:
<configuration>
<configSections>
…
<sectionGroup name="elmah">
<section name="security" type="Elmah.SecuritySectionHandler, Elmah" />
</sectionGroup>
…
</configSections>
<elmah>
<security allowRemoteAccess="yes" />
</elmah>
…
</configuration>
Note that if you are running under
Medium Trust in ASP.NET 2.0
or later, you will also need to add the
requirePermission="false"
attribute to the <section> above.