ActiveReports.Web Assembly > DataDynamics.ActiveReports.Web.Handlers Namespace : CompiledReportHandler Class |
'Declaration Public Class CompiledReportHandler Inherits ArHandlerBase
public class CompiledReportHandler : ArHandlerBase
Uses reflection to load the assembly and the specified report class; executes, and exports the report.
Assembly is to be specified as the first folder, and report class name as the subfolder. For example: http://localhost/MyAssemblyName/ActiveReport1.ActiveReport where MyAssemblyName.dll is the actual assembly filename, and ActiveReport1 the report class name. The special folder name indicating the assembly is evaluated from right to left, so if there are multiple folder levels, the folder name directly preceding the file name is always the assembly name.
For example, this would allow the following URL to be used: http://localhost/AnyFolder/AnySubFolder/MyAssemblyName/ActiveReport1.ActiveReport
You may also set any parameters you've added to the report's Parameters collection via the DataSource icon in the URL. For example:
http://localhost/AnyFolder/AnySubFolder/MyAssemblyName/ActiveReport1.ActiveReport?Country=USA
To use this handler you must enter the following into your web.config file (making sure to use the correct Version):
<httpHandlers>
<add verb="*" path="*.ActiveReport" type="DataDynamics.ActiveReports.Web.Handlers.CompiledReportHandler, ActiveReports.Web, Version=5.0.0.105, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
</httpHandlers>
System.Object
DataDynamics.ActiveReports.Web.Handlers.ArHandlerBase
DataDynamics.ActiveReports.Web.Handlers.CompiledReportHandler
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2