You may receive the following .NET run-time error:
Unverifiable assembly
['FileUpModule']['SAPrgres']['SAFileUp']
failed policy check.
This error will occur after changing your web.config or machine.config file so that the value specified in the level attribute of the <trust> element is any other value than "full".
<location allowOverride="false">
<system.web>
<securityPolicy>
<trustLevel name="Full" policyFile="internal"/>
<trustLevel name="High" policyFile="web_hightrust.config"/>
<trustLevel name="Medium" policyFile="web_mediumtrust.config"/>
<trustLevel name="Low" policyFile="web_lowtrust.config"/>
<trustLevel name="Minimal" policyFile="web_minimaltrust.config"/>
</securityPolicy>
<!-- trust level="[Full|High|Medium|Low|Minimal]" -->
<trust level = "Full" originUrl="" />
</system.web>
</location>
|