On our test server if we set Storage to default location which is in C:\Windows\TEMP folder we get unauthorized access exception, would setting Storage to "C:/Temp" cause any security issues, or are there better standard locations for storing temp files?
Telerik.Reporting.Services.ReportServiceConfiguration ReportConfiguration =
new
Telerik.Reporting.Services.ReportServiceConfiguration
{
ReportResolver =
new
ReportFileResolver(HttpContext.Current.Server.MapPath(
"~/MyReports"
))
.AddFallbackResolver(
new
ReportTypeResolver()),
Storage =
new
Telerik.Reporting.Cache.File.FileStorage()
};