Problem: Unable to write to event log - code base is written-and-compiled in 'C# ASP.NET-4.0 framework' on Windows Server 2008 SP2 (IIS7) -- porgrammatic logging into Windows Event-Log is done using 'log4net'.
Other details are: As a tech-refresh initiative, We have transferred our web-tier from a windows server 2003 (IIS-6) to windows server 2008 SP2 (IIS-7). We are using log4net (version 1.2) for event logging through code. There is a also a custom-windows-service which also uses the same code and is very much able to write into the Event-Log on new windows server 2008 SP2 (IIS-7) without any config or code changes, however the web-tier application is unable to do so. In the earlier setup, of web-tier on Win-2003, an 'aspnet' user account existed and the web-tier (with code changes) has been migrated to new windows server 2008 SP2 (IIS-7).
What I tried or analyzed so far is as follows:
- Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Appropriate-Application -> Right click select permissions and give the ASPNET account full control --- do NOT tell me this suggestion. There is no-point in giving fULL rights to 'ASPNET' user account as this account is NO more present in Windows-Server-2008. Nevertheless for the heck of it, I have given FULL-rights all users on the ...Services\Eventlog\Appropriate-Application -- still NO resolution.
- Also do NOT redirect me to this simialr stackoverflow link <log4net permission issue to write to application event log when the user is not in admin group in Windows 2008 R2 and IIS 7>... it MAY look similar to my problem... however the difference is that we do NOT have any explicit user-acount created for this web-tier application. As told in point-01, it used to run on the DEFAULT 'ASPNET' account and the code has not been changed.
- Do NOT suggest any code changes -- this OPTION IS RULED OUT for various reasons. Only web-config-file changes or other windows/IIS-level settings change is allowed. So obviously, please do NOT suggest this another stackoverflow link which talks about code POSSIBLE changes to resolve this problem. <Writing to an event log in ASP.NET on Windows Server 2008 IIS7>.
- The web-config files have been already compared between the versions of 'Win-2003' and 'Win-2008' and there are NO relevant differences.
This seems to be more of some 'permissions' or 'settings' issue -- but not able to figure it out as of today.