•   25 July 2007 2:43 pm
  •  


When deploying ASP.NET 2.0 Web applications to Indichosts.net Hosting
environmment you may run into the following error:

SecurityException: That assembly does not allow partially trusted callers.

Your application is unable to call strong named assemblies that are not
annotated with AllowPartiallyTrustedCallersAttribute (APTCA). Without
APTCA, strong named assemblies issue a demand for full trust, which will
fail when the demand reaches your partial-trust Web application. In Indichosts.net,
ASP.NET 2.0 applications are configured to run in a custom
trust level based on the Medium Trust Level.

To solve this issue mark your assemblies with the attribute
AllowPartiallyTrustedCallersAttribute, the attribute should be declared
at the assembly level (usually declared at Assemblyinfo.cs or
Assemblyinfo.vb).

An example of the declaration in C# is :

[assembly:AllowPartiallyTrustedCallers]

and in Visual Basic is :

<assembly:AllowPartiallyTrustedCallers>

Comments

  Add Comment

Confirm Submission

Please enter the text from the image in the box provided; this helps us to prevent spam.