I am stuck with one asp.net error. My application work fine on development and test environemnt. But on production it give me following error.

Could not load file or assembly 'someProject' or one of its dependencies. Access is denied.

I need immediate help.

link|improve this question

feedback

6 Answers

Go to Sysinternals and download Process Monitor: http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx

Then start it up, filter thread and registry actions away. Clear contents. Run your app and get the error, and then stop the collection in process monitor. Now search for an ACCESS DENIED status, and you'll be able to see the exact file that's causing troubles, as well as the user account trying to get access.

link|improve this answer
feedback

Give full permissions to the running user or group (like MACHINE\users group or DOMAIN\domain users) in

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files

Use your target .net version number instead of v4.0.30319 if it's other than .net 4.0.

link|improve this answer
feedback

Check that the server user has access to the directory where your assemblies are located.

link|improve this answer
what do you mean by server user? – Syed Tayyab Ali Apr 30 '09 at 21:26
The user context you asp.net application is running under. – Brian Rasmussen Apr 30 '09 at 21:30
it is actually integrated security option. when ever user hit site. it will ask domain\username and password... – Syed Tayyab Ali Apr 30 '09 at 21:36
I believe that is just used to authenticate the user. – Brian Rasmussen Apr 30 '09 at 21:46
feedback

Sounds like an incorrectly configured server.

First, verify that the assembly does indeed exist.

Second, verify that your worker process account has access to it.

link|improve this answer
i think it exist, i deployed it. all dll are in the bin folders. – Syed Tayyab Ali Apr 30 '09 at 21:27
That's only half of it. You have to verify that the worker process has access to it. Basically, start going through the IIS settings and compare your production box to the staging box. – Chris Lively Apr 30 '09 at 21:32
feedback

Are your assemblies in the GAC or in the Bin folder?
Do you use Code Access Security?

Is it possible to copy a debug version with pdb file to live, so you get more information?

Finally which user do you run the application as?
Do you use impersonation or do you run as a specific user?

link|improve this answer
my assemblies are in Bin folder. – Syed Tayyab Ali Apr 30 '09 at 21:27
Try putting your assemlbies in the GAC, if that solves your problem its a security issue. – Bravax Apr 30 '09 at 21:34
feedback
up vote 0 down vote accepted

Just delete the bin folder and then agian copy it. Now, it is working...

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.