The report viewer is blank

Stimulsoft Reports.NET discussion
Post Reply
SunilKumar
Posts: 11
Joined: Fri Oct 20, 2023 10:10 am

The report viewer is blank

Post by SunilKumar »

I tried to generate a large report with 500+ pages.
The report viewer is blank just with tool bar.
blankscreen.png
blankscreen.png (17.3 KiB) Viewed 927 times
How can i solve this?

But i can Download the the File.

If i try to generate the same report in new tab the Web Browser is crashing.
What can cause the crashing of the browser?

And to generate this report i have to set a max number of time out ex. 1000 for

Code: Select all

StiNetCoreViewer

 Server =
 {
 RequestTimeout =  1000, // The idea is to let the server timeout or throw an exception. This value is then higher than the server is expected to be.
     UseCompression = false,
     CacheMode = StiServerCacheMode.ObjectCache,
     CacheTimeout = 10, // Default value is 10, but putting here so intentions are clear.
     CacheItemPriority = CacheItemPriority.AboveNormal,
     AllowAutoUpdateCache = true
 }
and also from method

Code: Select all

 foreach (var ds in report.DataSources.Items)
 {
     if (ds is StiSqlSource dataSource)
     {
         dataSource.CommandTimeout = 1000;
     }
 }
If i add small number for StiNetCoreViewer -> Server -> RequestTimeout = 120 , its throwing Time Error.
If i remove dataSource.CommandTimeout = 1000; this from controller side then, its throwing the Fatal Error.

Do we have to set a higher number for both to fetch the large data?
Lech Kulikowski
Posts: 6291
Joined: Tue Mar 20, 2018 5:34 am

Re: The report viewer is blank

Post by Lech Kulikowski »

Hello,

What version are you use? Try to check the last release build.

Thank you.
SunilKumar
Posts: 11
Joined: Fri Oct 20, 2023 10:10 am

Re: The report viewer is blank

Post by SunilKumar »

Its version 2023.3.2.
Do the latest version will solve all the issues?
1. Blank screen on large report.
2. Need bigger timeout number to prevent timeout/fatal error issue.
Lech Kulikowski
Posts: 6291
Joined: Tue Mar 20, 2018 5:34 am

Re: The report viewer is blank

Post by Lech Kulikowski »

Hello,

Please check the following article:
https://www.stimulsoft.com/en/documenta ... imeout.htm

Thank you.
SunilKumar
Posts: 11
Joined: Fri Oct 20, 2023 10:10 am

Re: The report viewer is blank

Post by SunilKumar »

Thanks
Lech Kulikowski
Posts: 6291
Joined: Tue Mar 20, 2018 5:34 am

Re: The report viewer is blank

Post by Lech Kulikowski »

Hello,

You are welcome.
SunilKumar
Posts: 11
Joined: Fri Oct 20, 2023 10:10 am

Re: The report viewer is blank

Post by SunilKumar »

Hello,

I have tried with lates version and high timeout number but the result is same the blank screen .
Lech Kulikowski
Posts: 6291
Joined: Tue Mar 20, 2018 5:34 am

Re: The report viewer is blank

Post by Lech Kulikowski »

Hello,

Please send us a sample project that reproduces the issue for analysis on support@stimulsoft.com

Thank you.
Post Reply