New to Telerik Reporting? Download free 30-day trial

Troubleshooting reporting implementation into ASP.NET Core application

Environment

Product Progress® Telerik® Reporting
Project Type ASP.NET Core
.Net Framework .NET Core 2.1+

Description

If you are experiencing problems while working with Telerik Reporting, the right way to determine what have caused them is described in the following steps.

Solution

  • Upgrade to the latest version of the product in case the reason for the crash has been fixed.

  • Try the reproduce the crash on another machine to exclude machine specific problems e.g., corrupted Telerik Reporting installation.

  • Provide us with a log file containing detailed information about the error. To create the log file, go to the project that hosts the Rest Service and add the below settings in the Program.cs file in the Main method:

public static void Main(string[] args)
{
     EnableTracing();
     BuildWebHost(args).Run();
}

static void EnableTracing()
{
     System.Diagnostics.Trace.Listeners.Add(new System.Diagnostics.TextWriterTraceListener(File.CreateText("log.txt")));
     System.Diagnostics.Trace.AutoFlush = true;
}

Upon running the project and reproducing the error, it will be generated an aspnetcoredemo.log file at the root of the application.

After you generate the log files from the above steps, archive them and attach them to a support ticket. Include the steps which have to be followed in order to reproduce the issue.

In this article