The Command Timeout
The Command Timeout
Hi
Can I extend the command Timeout?
the data of the report is too big.The command Timeout is less. it alters the timeout response from the internet server.
Thank you.
Can I extend the command Timeout?
the data of the report is too big.The command Timeout is less. it alters the timeout response from the internet server.
Thank you.
Re: The Command Timeout
Hello.
Could you specify which Viewer or Designer do you use?
Also we need to know the version of our product.
Thank you.
Could you specify which Viewer or Designer do you use?
Also we need to know the version of our product.
Thank you.
Re: The Command Timeout
Hi
the version is 2015.1.
Thank you.
the version is 2015.1.
Thank you.
Re: The Command Timeout
Hello.
You did not specify which Viewer or Designer you use.
We need this information to help you.
Thank you.
You did not specify which Viewer or Designer you use.
We need this information to help you.
Thank you.
Re: The Command Timeout
HI
we use asp.net MVC.
Thank you.
we use asp.net MVC.
Thank you.
Re: The Command Timeout
Hello, Andy.
You could change Command Timeout with next code:
Thank you.
You could change Command Timeout with next code:
Code: Select all
Server = {
RequestTimeout = 60, // 60 seconds, default 20 seconds
}
Re: The Command Timeout
HI Aleksey Andreyanov
I set it.But the data is not show.the database is sqlserver2008.I get data from the server is quick. the report can not show it.
Thank you .
I set it.But the data is not show.the database is sqlserver2008.I get data from the server is quick. the report can not show it.
Thank you .
Re: The Command Timeout
Hello.
You should use this code in the View:
You should use this code in the View:
Code: Select all
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions()
{
Actions =
{
GetReportSnapshot = "GetReportSnapshot",
ViewerEvent = "ViewerEvent"
},
Server = {
RequestTimeout = 60, // 60 seconds, default 20 seconds
}
})