New to Telerik Reporting? Download free 30-day trial

Using the HTML5 Report Viewer with the Report Server

The quickest way to add a HTML5 Report Viewer to your web project is with the Telerik HTML5 Report Viewer item template in Visual Studio. This topic explains how to setup the HTML5 Report Viewer to work with Telerik Report Server using the built-in Guest account.

Prerequisites

  1. Review the HTML5 Report Viewer Requirements.
  2. Installed and running Telerik Report Server.
  3. Report Server's built-in Guest user should be enabled.
  4. Report Server should contain at least one report that can be accessed by the Guest user account.

Configuring the HTML5 Report Viewer to work with Report Server using Item Templates

The VS item template will integrate HTML5 Report Viewer in a.html page and will connect to the Telerik Report Server to process and render reports. The following describes what steps you should perform in order to add it in your application:

  • To start the item template wizard, in Solution Explorer, select the target project. On the Project menu, click Add -> New Item. In the Add New Item dialog box, navigate to the Web category. Select Telerik HTML5 Report Viewer Page item.
  • You will be prompted to accept building the project. Click 'OK'.
  • The item template will open the 'Add new Report Viewer' dialog with the following steps:

    1. 'Configure reporting engine' will configure the type of reporting engine that will process and render the reports. You have two options - REST service or Report server. Choose Report Server option. This way, the reports will be processed and rendered by the specified Report Server instance. On the right side of the dialog there are two things that you should enter:

      • Report Server URI - enter a valid Report Server URI.
      • Runtime credentials - enter Username and Password for Registered user or choose Guest user if it suits your needs. Make sure your Report Server instance has its Guest account enabled.

      The Visual Studio item template Add new Report Viewer on the page Configure reporting engine with selected Report Server

    2. 'Setup Report Source for Report Server' will choose a report definition for the report viewer. There are two things that you should select, but in case you are using Guest account, you will have to fill-in the fields manually. It is because the Guest user cannot read the available categories and reports for security reasons:

      • Category - select a category from the drop-down menu which contains the desired report.
      • Report name - select a report from the available reports.

      The Visual Studio item template Add new Report Viewer on the page Setup Report Source for Report Server

    3. 'Configure Report Viewer' exposes the option to enable accessibility for the report viewer.

      The Visual Studio item template Add new Report Viewer on the page Configure Report Viewer for Enabling Accessibility

After finishing, the item template automatically do the following:

  • Configures the NuGet packages, if nessesary.
  • Adds a HTML page with the configured HTML5 Report Viewer.
  • Displays a summary log that list all of the made changes.

Manually configuring the HTML5 Report Viewer to work with Report Server

Although the fastest and most convenient way to get a working HTML5 viewer in your application is to use the Visual Studio item templates, the same result can be achieved using manual configuration.

  1. Follow the steps described in HTML5 Viewer Manual Setup article to get your HTML5 viewer working. Examine the produced HTML page and especially the section that configures the viewer:

    $("#reportViewer1")
        .telerik_ReportViewer({
            serviceUrl: "/api/reports/",
            templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate-18.0.24.305.html',
            reportSource: {
                report: "Telerik.Reporting.Examples.CSharp.ProductCatalog, CSharp.ReportLibrary",
                parameters: {
                    CultureID: "en"
                }
            }
        });
    
  2. Locate the line that sets the service URL: serviceUrl: "/api/reports/",. Comment it out or replace it with the following code:

    reportServer: {
        url: "https://yourReportServerUrl:port",
        username: null,
        password: null
    },
    

    Substitute the https://yourReportServerUrl:port with the actual url of your Report Server instance along with the port if needed. Specifying the username and password can be omitted (in this case the Report Server's Guest account will be used) or can be set to an actual account, defined in Report Server.

  3. If you have modified the Telerik Report Viewer Template HTML file, you can leave the templateUrl option intact. Otherwise it is recommended to delete the line templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate-18.0.24.305.html', so the template will be downloaded automatically from the server.

  4. Locate the lines that sets the report source's report definition (it should start with report: "...). Replace them with the following line: report: "{Category}/{ReportName}", where {Category} and {ReportName} are the actual names of the category and report that can be accessed by the Guest user or by the user you have provided login credentials for. Setup the report parameters if needed.
  5. The initialization should look like the following:

    $("#reportViewer1")
        .telerik_ReportViewer({
            reportServer: {
                url: "https://yourReportServerUrl:port",
                username: null,
                password: null
            },
            //templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate-18.0.24.305.html',
            reportSource: {
                // The report value should contain the Category and ReportName in the following format
                // {Category/ReportName}
                report: "Samples/Dashboard"
                parameters: {
                    ReportYear: 2004
                }
            }
        });
    
  6. Run the project and you should see the configured in the previous step report appearing in the Report Viewer. If not, check the Troubleshooting section below.

Troubleshooting

The most common reasons for failure are related with the authentication against Report Server. It is strongly recommended to use a tool like Fiddler or any other web debugger when investigating such a problem.

Problem Cause
The viewer displays the message:
Error registering the viewer with the service. Insufficient credentials.
Check if the supplied username and password are valid and the user's state is Enabled in Report Server.
The page shows the message:
The report server URL is not specified
or
Error loading the report viewer's templates
The reportServer's url property is empty or invalid.
The report viewer loads the template, but displays a message
"Error creating report instance
or
Unable to get report parameters. Report ' *Category* / *Report* ' cannot be resolved.
Check again the report source's report arguments and make sure the category name and the report name exist in Report Server.
The viewer loads the template, but displays a message
Unable to get report parameters. Access denied.
Make sure that the user account has permissions to read the specified report and category.
The viewer doesn't load any page and there is only a label saying loading... in the top left page corner. Check the Fiddler log for a request to the /Token URL. This is the request that should obtain the token used to authenticate the user account. When found, check the Response headers and look for the error code below:
  • HTTP/1.1 502 Fiddler - DNS Lookup Failed- make sure you have set the Report Server URL correctly.
  • HTTP/1.1 400 Bad Request- check if the built-in Guest user is Enabled and has Read permissions for configured report.

See Also

In this article