Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 3.41 KB

deploying-a-data-processing-extension.md

File metadata and controls

45 lines (37 loc) · 3.41 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic ms.custom helpviewer_keywords
Deploy a data processing extension
Learn how to make your Reporting Services data processing extension discoverable by the report server and by Report Designer.
kfollis
kfollis
09/25/2024
reporting-services
extensions
reference
intro-deployment
updatefrequency5
data processing extensions [Reporting Services], deploying
Extension element
deploying [Reporting Services], extensions

Deploy a data processing extension

Once you write and compile your [!INCLUDEssRSnoversion] data processing extension into a [!INCLUDEmsCoName] [!INCLUDEdnprdnshort] library, you need to make it discoverable by the report server and by Report Designer. This process is as easy as copying the extension to the appropriate directories and adding entries to the appropriate [!INCLUDEssRSnoversion] configuration files.

Configuration file Extension element

Data processing extensions that you deploy to the report server or Report Designer need to be entered as Extension elements in the configuration files. These files are RSReportServer.config for the report server and RSReportDesigner.config for Report Designer.

The following table describes the attributes for the Extension element for data processing extensions.

Attribute Description
Name A unique name for the extension, for example, "SQL" for the [!INCLUDEssNoVersion] data processing extension or "OLEDB" for the OLE DB data processing extension. The maximum length for the Name attribute is 255 characters. The name must be unique among all entries within the Extension element of a configuration file.
Type A comma-separated list that includes the fully qualified namespace along with the name of the assembly.
Visible A value of false indicates that the data processing extension shouldn't be visible in user interfaces. If the attribute isn't included, the default value is true.

For more information about the RSReportServer.config or RSReportDesigner.config files, see Reporting Services configuration files.

In this section

Article Description
Deploy a data processing extension to a report server Describes how to deploy your data processing extension to a report server.
Deploy a data processing extension to Report Designer Describes how to deploy your data processing extension to Report Designer.

Related content