xtrareports-400212-web-reporting-asp-net-mvc-reporting-end-user-report-designer-in-asp-net-mvc-applications-quick-start-report-designer-requirements-and-limitations.md
Web Reporting components require DevExtreme and third-party libraries, which you can register automatically. To do this, add the resources section to the application’s Web.config file:
<devExpress>
<!-- ... -->
<resources>
<add type="ThirdParty" />
<add type="DevExtreme" />
</resources>
</devExpress>
For manual registration, review the following help topic: Client Script Libraries.
Register ASPxHttpHandlerModule in the web.config file as a module to process resources and as a handler to process data.
The ASPxHttpHandlerModule is automatically registered in this file in the following cases:
If you create the Report Designer in code, you should register ASPxHttpHandlerModule explicitly. Insert the declarations in the system.web/httpModules and system.webServer/modules configuration sections, and add the handler registration to the system.web/httpHandlers and system.webServer/handlers sections.
...
<httpHandlers>
...
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXXRD.axd" validate="false" />
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXXRDV.axd" validate="false" />
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXQB.axd" validate="false" />
</httpHandlers>
<httpModules>
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />
</httpModules>
<handlers>
...
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXXRD.axd" name="ASPxReportDesignerHandlerModule" preCondition="integratedMode" />
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXXRDV.axd" name="ASPxWebDocumentViewerHandlerModule" preCondition="integratedMode" />
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a"
verb="GET,POST" path="DXQB.axd" name="ASPxQueryBuilderDesignerHandlerModule" preCondition="integratedMode" />
</handlers>
<modules runAllManagedModulesForAllRequests="true">
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2, Version=25.2.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" name="ASPxHttpHandlerModule" />
</modules>
The Report Designer validates the configuration and displays the following error message if the corresponding handlers are not registered.
“The DXXRD.axd handler is not registered in the web.config (section: system.webServer/handlers). To disable web.config validation, use the DevExpress.Web.Mvc.ReportDesignerSettings.DisableHttpHandlerValidation property.“
Do not use handlers and/or validate their registration in the following cases:
<location> section and automatic validation fails.To disable automatic handler validation, set the ReportDesignerSettings.DisableHttpHandlerValidation option to true :
@Html.DevExpress().ReportDesigner(settings => {
settings.Name = "ReportDesigner1";
settings.DisableHttpHandlerValidation = true;
}).Bind(Model.Report).GetHtml();
@Html.DevExpress().ReportDesigner(Function(settings)
settings.Name = "ReportDesigner1"
settings.DisableHttpHandlerValidation = True
End Function).Bind(Model.Report).GetHtml()
Report scripts are disabled in the Web Report Designer. For more information on security in report scripts, review the following help topic: Scripts - Security Considerations.
Graphical report controls (e.g., Sparklines, Gauges) are not fully rendered on the design surface.
The XRRichText control does not include the rich text editor. You should explicitly enable the control’s Rich Text Editor to apply inline rich text formatting. For more information, review the following help topics:
The Report Designer’s Print Preview prints a report by converting it to PDF and printing the PDF. This approach requires browser support for PDF.
Touch events are not supported.
The Web Report Designer is not fully compliant with web accessibility guidelines. For more information on web accessibility in DevExpress controls, refer to the following help topic: Accessibility Support.