New to Telerik Reporting? Download free 30-day trial

Hosting the Telerik Reporting REST Service in an ASP.NET Core Application in .NET Core 3.1

This article guides you how to host a Reports Web Service in order to expose the Reports Generation Engine to an ASP.NET Core 3.1 Web Application.

The guide is separated into sections for readability reasons. Along with the steps, it elaborates on the concepts and theory behind each step.

Prerequisites

Using the REST Service Project Template

In Visual Studio open the Add New Project dialog and select Telerik Reporting REST Service project template. After clicking Create a menu pops up that allows you to configure the following properties of the REST Service: target framework, service clients (report viewer and report designer), Cross-Origin Resource Sharing, Host Application ID, and Application URL.

REST Service Project Configuration page from the Visual Studio project template for adding Telerik Reporting REST Service

Set the Target Framework to .NET Core 3.1.

Once you have configured the rest of the options to your liking, click Finish and a new project, containing all the necessary files and packages to host the Telerik Reporting REST service instance, will be added to your solution.

Manually configuring the Telerik.Reporting REST Service

Creating a Sample ASP.NET Core 3.1 Project

First, you need to create a new ASP.NET Core project:

  1. Open Visual Studio 2019 or newer.
  2. From the File menu, select New > Project.
  3. In the Add a new Project dialog select ASP.NET Core Web Application project template. Choose a name and location for the project and click Create.
  4. In the Create a new ASP.NET Core web application dialog select from the drop downs .NET Core and ASP.NET Core 3.1 or later. Next, from the list of templates select Empty project template and click Create.

Add Report Definitions

In this tutorial, the resulting service will use the sample report definitions deployed with the Telerik Reporting product installer:

  1. Find the sample reports in {Telerik Reporting installation path}\Report Designer\Examples.
  2. Add a new folder to your solution called Reports and copy all sample reports into it.
  3. Later in the tutorial we will make sure that the ReportsController is able to resolve the definitions for the requested reports from this project folder.

It is recommended to use declarative definitions (TRDP/TRDX/TRBP) authored using the Standalone Report Designer or the Web Report Designer in order to take advantage of their design-time tooling because the VS integrated report designer tooling is still not available in .NET Core projects. Existing .NET Framework report libraries can be migrated to declarative report definitions as well. The other available approach is designing reports in a separate Telerik Report Library created against .NET Framework 4.0+ which later must be migrated to a .NET Standard or .NET Core library. For more information, please refer to Guidance for using reports from an existing .NET Framework 4+ report library in a .NET Core application knowledge based article. Design-time support is not yet provided for .NET Core Telerik Report Library (Class Library) projects storing the report definitions.

Add the required dependencies

This guide applies the recommended NuGet package references approach to add the dependencies:

  1. Reference the Telerik.Reporting.Services.AspNetCore (or Telerik.Reporting.Services.AspNetCore.Trial) package.
  2. Optionally, to enable the Office OpenXML document formats (XLSX, DOCX and PPTX) as export options, reference the Telerik.Reporting.OpenXmlRendering (or Telerik.Reporting.OpenXmlRendering.Trial) NuGet package.

The recommended way of adding the necessary dependencies is to use the Progress Telerik proprietary NuGet feed and reference the dependencies as NuGet packages. This would also add the indirect dependencies to your project bringing easier dependency management. Alternatively, the assemblies are available in the \Bin\netcoreapp3.1\ folder of Telerik Reporting installation directory. However, this would require to manually add all indirect dependencies listed in .NET Core Support - Requirements section and also the following dependency package: Microsoft.AspNetCore.Mvc.NewtonsoftJson version 5.0.0 and DocumentFormat.OpenXML version 2.7.2.0 or above. Note that you need the last reference only to enable the Office OpenXML document formats. The Reporting engine relies on the GDI+ API which is available on the Windows OS. On Linux and macOS we use library called libgdiplus instead. The GDI+ API is required for measuring, laying out, rendering the text glyphs and images.

Setup the Startup.cs file for the Reports service

The ConfigureServices method inside the Startup.cs in the project should be modified in order to enable the Reports Service functionality.

  1. Make sure the application is configured for WebAPI controllers and call the AddNewtonsoftJson on the IMvcBuilder object to place the NewtonsoftJson serialization:

    services.AddControllers().AddNewtonsoftJson();
    
  2. Add the dedicated configuration object needed from the Reports Service in the dependency container. Note how the report source resolver will target the Reports folder we created earlier.

    // Configure dependencies for ReportsController.
    services.TryAddSingleton<IReportServiceConfiguration>(sp =>
        new ReportServiceConfiguration
        {
            ReportingEngineConfiguration = ConfigurationHelper.ResolveConfiguration(sp.GetService<IWebHostEnvironment>()),
            HostAppId = "ReportingCore3App",
            Storage = new FileStorage(),
            ReportSourceResolver = new UriReportSourceResolver(
                System.IO.Path.Combine(sp.GetService<IWebHostEnvironment>().ContentRootPath, "Reports"))
        });
    
  3. Make sure the endpoints configuration inside the Configure method of the Startup.cs are configured for API controllers by adding the following line in the lambda expression argument:

    app.UseEndpoints(endpoints =>
    {
        endpoints.MapControllers();
        //...
    });
    

Add Configuration Settings (Optional)

The report generation engine can retrieve Sql Connection Strings and specific Report Generation Engine Settings that provide flexibility of the deployed application. It utilizes the IConfiguration interface for this purpose.

.NET Core applications provide a new way of storing the configuration - a key-value JSON-based file named by default appSettings.json. The default ReportingEngineConfiguration:

ReportingEngineConfiguration = sp.GetService<IConfiguration>()

will be initialized from appSettings.json or appsettings.{EnvironmentName}.json.

To activate JSON file configuration with a different name, for example, reportingAppSettings.json, call the AddJsonFile extension method on an instance of ConfigurationBuilder.

In this guide we will create a helper class loading the json-formatted setting:

using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
static class ConfigurationHelper
{
    public static IConfiguration ResolveConfiguration(IWebHostEnvironment environment)
    {
        var reportingConfigFileName = System.IO.Path.Combine(environment.ContentRootPath, "reportingAppSettings.json");
        return new ConfigurationBuilder()
            .AddJsonFile(reportingConfigFileName, true)
            .Build();
    }
}

Finally, all configurations should be placed in the JSON configuraion file (add one in the project root if such does not exist). For example, ConnectionStrings setting should be configured in JSON-based format like this:

{
    //...
    "ConnectionStrings": {
        "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true"
    }
}

The above type of connection string lacks information about the data provider and will use System.Data.SqlClient as provider invariant name. When it's necessary to specify a different data provider, the following notation is also supported:

{
    //...
    "ConnectionStrings": {
    "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString": {
        "connectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true",
        "providerName": "System.Data.SqlClient"
    }
    }
}

The two types of connection string notations specified above can coexist in a single ConnectionStrings section.

The last supported type of ConnectionStrings configuration uses an array to provide information about each connection string:

{
    //...
    "ConnectionStrings": [
    {
        "name": "Telerik.Reporting.Examples.CSharp.Properties.Settings.TelerikConnectionString",
        "connectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=true",
        "providerName": "System.Data.SqlClient"
    }
    ]
}

Setting up the REST service

  1. Create folder Controllers. Right-click on the project name and select Add > New folder. Name it Controllers.
  2. Implement a Reports controller. Right-click on the Controllers folder and add a new item: Add > New item > Web API Controller Class item. Name it ReportsController. This will be our Telerik Reporting REST service in the project.
  3. Inherit the ReportsControllerBase type and inject the configuration settings in the constructor. This is how a basic implementation of the controller should look like:

    namespace AspNetCoreDemo.Controllers
    {
        using Microsoft.AspNetCore.Mvc;
        using System.Net;
        using System.Net.Mail;
        using Telerik.Reporting.Services;
        using Telerik.Reporting.Services.AspNetCore;
        [Route("api/reports")]
        public class ReportsController : ReportsControllerBase
        {
            public ReportsController(IReportServiceConfiguration reportServiceConfiguration)
                : base(reportServiceConfiguration)
            {
            }
            protected override HttpStatusCode SendMailMessage(MailMessage mailMessage)
            {
                throw new System.NotImplementedException("This method should be implemented in order to send mail messages");
                //using (var smtpClient = new SmtpClient("smtp01.mycompany.com", 25))
                //{
                //  smtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;
                //  smtpClient.EnableSsl = false;
                //  smtpClient.Send(mailMessage);
                //}
                //return HttpStatusCode.OK;
            }
        }
    }
    

Test the service implementation

To ensure that the service operates, run the application and navigate to either of the General REST Service API URLs {applicationRoot}/api/reports/formats or {applicationRoot}/api/reports/version. The first should return a JSON representing the supported rendering extensions, and the second - the version of the Reporting REST Service.

Enable Cross-Origin Resource Sharing (CORS) (Optional)

You may need to enable Cross-Origin Resource Sharing (CORS), for example, if you use the REST Service from clients hosted in different domains.

Add the following code to the ConfigureServices method of the Startup.cs file to add a new CORS policy for the REST Service:

services.AddCors(corsOption => corsOption.AddPolicy(
    "ReportingRestPolicy",
    corsBuilder =>
    {
        corsBuilder.AllowAnyOrigin()
            .AllowAnyMethod()
            .AllowAnyHeader();
    }
));

Activate the above policy for the application by adding the next code in the Configure method of the Startup.cs file:

app.UseCors("ReportingRestPolicy");

Demo project

A full example can be found in the installation folder of Telerik Reporting:

C:\Program Files (x86)\Progress\Telerik Reporting 2024 Q1\Examples\CSharp\.NET Core 3.1\ReportingRestServiceCorsDemo\CSharp.Core31.ReportingRestServiceCorsDemo

In this article