Hello Vagelis,
There are several steps which should be followed for setting your application to work in Medium Trust Environment. You could find them in the User Manual, section
Medium Trust Support. Still, for your convenience, here are the steps you need to follow:
Make the following changes in your
web.config file:
1. As mentioned in your post, the following script has to be added in the
<system.web> tag:
| <system.web> |
| <trust level="Medium" /> |
| ... |
| <system.web> |
2. You have to make sure that the
HealthMonitoring option is set to false:
| <healthMonitoring enabled="false" heartbeatInterval="0"> |
3. You must make sure that you have not enabled Workflow for the modules or pages in any part of the
web.config file:
| AllowPageWorkflow=”False” |
| AllowWorkflow=”False” |
4. Make sure that the following line is commented out:
| <!--add name="SitefinityXml" securityProviderName="" type="Telerik.Lists.Data.XmlProvider, Telerik.Lists.Data" dataFile="~/App_Data/Lists.xml" visible="true" /--> |
Please let us know if, after making all the adjustments described above, you still experience any of the issues for which you have reported to us.
Best wishes,
Nikifor
the Telerik team