Timeout response from the server
Posted: Wed Aug 15, 2018 5:53 pm
hello, I have implemented mvc stimulsoft in my solution and I have a problem that when I try to show me the report data I get the following error "server response time", but the problem is that I can not even find the methods that I have parameterized MVC in the controller, because I have the timeout set to 180.
this is the configuration that I have in the view
<div>
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Theme = StiTheme.Default,
ActionGetReportSnapshot = "GetReportSnapshot",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ClientRequestTimeout = 180,
Server =
{
RequestTimeout = 60,
CacheMode = StiServerCacheMode.None
}
})
</div>
I also tried the following way:
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Theme = StiTheme.Default,
ActionGetReportSnapshot = "GetReportSnapshot",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ClientRequestTimeout = 180
})
this is the configuration that I have in the view
<div>
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Theme = StiTheme.Default,
ActionGetReportSnapshot = "GetReportSnapshot",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ClientRequestTimeout = 180,
Server =
{
RequestTimeout = 60,
CacheMode = StiServerCacheMode.None
}
})
</div>
I also tried the following way:
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Theme = StiTheme.Default,
ActionGetReportSnapshot = "GetReportSnapshot",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ClientRequestTimeout = 180
})