PublicKeyToken=b77a5c561934e089' failed
I am trying to locate which section of the configuration section I can change the trust level, I just added IIS 6 to my machine and have gotten this (PublicKeyToken=b77a5c561934e089' failed) message I have researched and found that it has to do with permissions I don't want to make the wrong changes and dig myself further in to a hole can someone explain in detail where it is I change the configuration.
DKB
[425 byte] By [
DKB] at [2007-12-28]
DKB,
According to your description, your problem looks like an error related to ASP.NET trust level setting configuration in IIS. Could you post all the details of the error message or show me a screenshot of the error? Obviously, he error info provided isn't intact.
Generally speaking, when you run the application well on your local computer but sometimes you will get the error message as you tell me PublicKeyToken problem when the application runs on the Local Network. This is the security issue in .NET Framework. It prevent the unauthenticated code access your system resource.
When you run the application on your local computer, the code runs in MyComputer Zone, .NET will give the code full trust. However, when you run the code on network drive, you will get the restrictive permission.
In order to solve this problem run on the network, try this method: Modify the level permission of LocalIntranet or WAN of .NET authentication.
Hope that helps :-)