Rank: Advanced Member Groups: Administration
, Member
Joined: 8/3/2003 Posts: 368 Points: -66
|
Graphics Mill for .NET and add-ons are written in the Managed C++ and mix managed and unmanaged C++ code in assemblies. These assemblies are non-verifiable and require SkipVerification permission to be run. Therefore, any web application which uses Graphics Mill for .NET and add-ons must be run in the Full trust mode. There are two ways to set the necessary trust level: Modify Web.config file:Code:<system.web> <trust level="Full" originUrl="" /> </system.web> Add Graphics Mill for .NET and add-ons assemblies to the Global Assembly Cache (GAC). You can find the detailed information about installing assemblies into the GAC in MSDN article How to: Install an Assembly into the Global Assembly Cache.
By default, Web applications are configured to run with Full trust level. But under certain circumstances the trust level can be reduced. For example, hosting providers may reduce the trust level due to security policy. In that case, you should contact your hosting provider to solve this question.
Sincerely yours, Dmitry Sevostjanov.
Aurigma Technical Support Team.
|