70-448 · Question #26
70-448 Question #26: Real Exam Question with Answer & Explanation
The correct answer is D. You should change the RSReportServer.config file. Modifying the RSReportServer.config file The RSReportServer.config is one of several configuration files, but it is the main configuration file for both the Report Server Web service and Report Manager. In Reporting Services 2005, Report Manager had a separate confi guration file
Question
Options
- AYou should change the AppSetttings.config file.
- BYou should change the Global.asax file.
- CYou should change the Machine.config file.
- DYou should change the RSReportServer.config file
Explanation
Modifying the RSReportServer.config file The RSReportServer.config is one of several configuration files, but it is the main configuration file for both the Report Server Web service and Report Manager. In Reporting Services 2005, Report Manager had a separate confi guration file named RSWebApplication.config, but this file is no longer used in Reporting Services 2008. Limiting the List of Report Rendering Options A common configuration setting in RSReportServer.config is to limit the user choices for the report rendering. For example, if you wanted to exclude Microsoft Office Excel as a choice for rendering reports, you would look for the entries under the <Render> tag in the XML .config file to find the following <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer. ExcelRenderer, Microsoft.ReportingServices.ExcelRendering"/> To turn off Excel in the rendering options, you would add a Visible="false" entry to the line, like <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer. ExcelRenderer, Microsoft.ReportingServices.ExcelRendering" Visible="false"/>
Community Discussion
No community discussion yet for this question.