Reputation: 1886
I got a problem with IIS. I am trying to host application from UNC path, but I get errors - that it can't load assemblies from bin folder. Is there something tricky I am missing or it just can't be done? I am providing all the credentials needed in Physical Path Credentials, I also tried running the application pool as the allowed user, but it seems the problem is different..
PS: I am running .NET 4.0
Upvotes: 1
Views: 1158
Reputation: 13010
Running an IIS app from a UNC is generally not a good idea for both security and reliability reasons, however the Running “partially trusted” .NET assemblies from a network share question here on stackoverflow will probably help you.
Upvotes: 1