I have a stimulus report that runs locally without any problems, but I get the following error in IIS
Access to the path 'Stimulsoft' is denied.
System.UnauthorizedAccessException: Access to the path 'Stimulsoft' is denied.
Source Error : Line 6
Line 4: }
Line 5:
Line 6: @Html.Stimulsoft().StiMvcViewer(options: new StiMvcViewerOptions()
Line 7: {
Line 8: Actions =
Code in Controller :
public ActionResult report()
{
var report = new StiReport();
report.Load(Server.MapPath("~/Content/SalaryReport.mrt"));
report.Compile();
Code in View :
@using Stimulsoft.Report.Mvc;
@{
ViewBag.Title = "Print";
}
@Html.Stimulsoft().StiMvcViewer(options: new StiMvcViewerOptions()
{
Actions =
{
GetReport = "report",
ViewerEvent = "viewerEvent"
}
})
CodePudding user response:
unfortunately no one answered my question and I finally found the solution myself, the reason for this error is in the version of the reporting software that needs to be changed.