I have developed a .NET service and it's been running well on my dev machine for ages. I've tested deploying it and have never experienced any permission issues.
When I came to deploy the service to a test location, however, I was greeted with this error:
Request for the permission of type 'System.Diagnostics.EventLogPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
The service has permission to write to the event log because it actually does write some events.
What could be going on here?
P.S. I am not prepared to adjust any security zones or run my service under a special account.