Difference between revisions of "Reporting Services"
(Created page with "As of V7 XLCubed can integrate your Reporting Services reports with the XLCubed Repository. To configure this up you will need to add the following settings in the web.config fi...") |
m (Text replacement - "XLCubed" to "FluenceXL") |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | As of V7 | + | As of V7 FluenceXL can integrate your Reporting Services reports with the FluenceXL Repository. |
− | + | The first step is to install the [http://msdn.microsoft.com/en-us/library/microsoft.reporting.webforms.reportviewer.aspx ReportViewer] control, available for [http://www.microsoft.com/en-us/download/details.aspx?id=6442 download from Microsoft] | |
+ | Next, to configure this you will need to add the following settings in the web.config file of your FluenceXLWeb installation: | ||
+ | |||
+ | <pre> | ||
+ | <appSettings> | ||
+ | <!-- Existing settings... --> | ||
+ | <add key="ReportingServicesUrl" value="http://my-server:8080/Reports_SQL2008RS" /> | ||
+ | <add key="ReportingServicesServerUrl" value="http://my-server:8080/ReportServer_SQL2008RS" /> | ||
+ | </appSettings> | ||
+ | </pre> | ||
+ | |||
+ | And remove the comments around sections of the web.config labeled | ||
<pre> | <pre> | ||
− | < | + | <!-- ReportingServices Integration --> |
− | |||
</pre> | </pre> | ||
− | Once this is done | + | Once this is done FluenceXL will query the Reporting Services report list when a user logs in, and create folders for the reports found. These can then be opened directly in the FluenceXLWeb application. |
+ | |||
+ | |||
+ | [[Image:ReportingServicesIntegration.png|thumb|center|500px]] | ||
+ | |||
+ | [[Category:Installation]] | ||
+ | [[Category:Web Edition]] |
Latest revision as of 09:32, 4 July 2023
As of V7 FluenceXL can integrate your Reporting Services reports with the FluenceXL Repository.
The first step is to install the ReportViewer control, available for download from Microsoft
Next, to configure this you will need to add the following settings in the web.config file of your FluenceXLWeb installation:
<appSettings> <!-- Existing settings... --> <add key="ReportingServicesUrl" value="http://my-server:8080/Reports_SQL2008RS" /> <add key="ReportingServicesServerUrl" value="http://my-server:8080/ReportServer_SQL2008RS" /> </appSettings>
And remove the comments around sections of the web.config labeled
<!-- ReportingServices Integration -->
Once this is done FluenceXL will query the Reporting Services report list when a user logs in, and create folders for the reports found. These can then be opened directly in the FluenceXLWeb application.