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.

link|improve this question

1  
Wow. So you asked the question, and found and typed the answered in just 14 seconds. You are so fast! :). – Alex Aza Jun 10 '11 at 2:33
feedback

1 Answer

up vote 0 down vote accepted

The problem was that the Service loaded some assembly at runtime, and in my Test deployment I had pointed to the assembly (in the application config) using UNC network share. (e.g. \machine\d$...) In my Dev deployments I was pointing to it using a local absolute reference (D:......)

The LocalSystem account has very tight permissions, including not being able to access files on a remote machine. Additionally, the .Net Framework usually doesn’t like running remote assemblies.

We know this, but it slipped my mind during the deployment.

Changing the assembly path to the local form resolved this issue.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.