Our web application (with small initial ASP.NET page and a number of WCF services)
uses custom Windows event log to record its events.
On Windows7 Professional and under Visual Studio service host, events are recorded properly.
But when the same application is deployed under IIS7.5 on Win2k8 R2, events are not recorded.
I have found a recipe at http://jpadda.wordpress.com/2010/08/08/event-log-write-permissions ,
which advises adding r/w access for Authenticated Users : (A;;0x3;;;AU) ,
so my 'wevtutil gl' for this log now looks like :

name: custom log
enabled: true
type: Admin
owningPublisher:
isolation: Application
channelAccess: O:BAG:SYD:(A;;0xf0007;;;SY)(A;;0x7;;;BA)(A;;0x7;;;SO)(A;;0x3;;;IU)(A;;0x3;;;SU)(A;;0x3;;;S-1-5-3)(A;;0x3;;;S-1-5-33)(A;;0x1;;;S-1-5-32-573)(A;;0x3;;;AU)
logging:
  logFileName: %SystemRoot%\System32\Winevt\Logs\custom log.evtx
  retention: false
  autoBackup: false
  maxSize: 1052672
publishing:
  fileMax: 1

The system was restarted after 'wevtutil sl ...', however, events from web application pools are still not recorded.
With Process Explorer (procexp), I can see that 'w3wp' app.pool processes have 'Authenticated users' in their group list. Unfortunately, Process Monitor (procmon) does not trace Event Log API calls.
So I am pretty confused now.

Could you please advise me on what else should I check ?
Thank you in advance.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.