I am currently evaluating the reports, and upgraded to 11.2 as I needed to test out the parameter passing features.
I am now experiencing the following error when viewing reports with the XamReportViewer :
Infragistics.Reports.Engine.EngineException: There was an error while loading the report SimpleJobReport.igr. Details: Unable to cast object of type 'Infragistics.Reports.MeasureDataType' to type 'Infragistics.Models.Data.DataType'.
I have create a new report with only a label as I thought my original test report may have been corrupted. This new report gives me the same error.
I could not find any documentation on whether I need to alter the client app.config. Have include both the server web.config and the client app.config files.
The XAML for the viewer is:
<ig:XamReportViewer Grid.Row="1" ZoomScale="75" >
<ig:XamReportViewer.RenderSettings>
<ig:ServerRenderSettings DefinitionUri="SimpleJobReport.igr" ServiceEndpointUri="http://localhost:53117/ReportService.svc" />
</ig:XamReportViewer.RenderSettings>
</ig:XamReportViewer>
It's possible that your app is still referencing old asssemblies (assemblies of CTP).
- Try deleting { Bin, Generated_Code, obj, ClientBin } folders of your projects. They could contain copies of the old assemblies. Those folders will be regenerated when compiling.
- Check if the references in your projects are pointing to the new installed assemblies.
Please tell me if it works
Regards,
Simon