Отображение заранее подготовленного отчета в StiWebViewer

Обсуждение Stimulsoft Reports.NET
Ответить
fantomus
Сообщения: 215
Зарегистрирован: 22 апр 2009, 06:41
Откуда: Kyiv, Ukraine

Отображение заранее подготовленного отчета в StiWebViewer

Сообщение fantomus »

Здравствуйте!

Пытаюсь отобразить заранее подготовленный отчет в StiWebViewer:

Код: Выделить всё

Stimulsoft.Report.StiReport report = new Stimulsoft.Report.StiReport();
report.LoadDocument(reportStream);
WebStiReport.Report = report;
Получаю ошибку:
Unable to cast object of type 'Stimulsoft.Report.Components.StiPage' to type 'Stimulsoft.Report.Components.StiPage'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.InvalidCastException: Unable to cast object of type 'Stimulsoft.Report.Components.StiPage' to type 'Stimulsoft.Report.Components.StiPage'.

Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:
[InvalidCastException: Unable to cast object of type 'Stimulsoft.Report.Components.StiPage' to type 'Stimulsoft.Report.Components.StiPage'.] Stimulsoft.Report.Web.StiWebViewer.GetWebForm(StiReport report) +126 Stimulsoft.Report.Web.StiWebViewer.get_IsWebFormReport() +12 Stimulsoft.Report.Web.StiWebViewer.CreateChildControls() +199 System.Web.UI.Control.EnsureChildControls() +87 Stimulsoft.Report.Web.StiWebViewer.OnLoad(EventArgs e) +53 System.Web.UI.Control.LoadRecursive() +50 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Control.LoadRecursive() +141 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsync

В чем может быть проблема и как решить?
Спасибо
Jan
Сообщения: 495
Зарегистрирован: 19 фев 2009, 11:14

Отображение заранее подготовленного отчета в StiWebViewer

Сообщение Jan »

Здравствуйте,

Это конфликт двух разных копий сборок генератора отчетов. Он не может преобразовать StiPage (из одной сборки) в StiPage (из другой сборки), т.к. фактически это разные типы. Проверьте GAC, ReferencedAssemblies, Bin папки установленных продуктов (на них прописываются ссылки для студии в реестре), кэши студии, локальные копии сборок в проекте.

p.s. Код правильный, все должно работать.

Спасибо.
fantomus
Сообщения: 215
Зарегистрирован: 22 апр 2009, 06:41
Откуда: Kyiv, Ukraine

Отображение заранее подготовленного отчета в StiWebViewer

Сообщение fantomus »

Точно!

Спасибо, все работает :biggrin:
Andrew
Сообщения: 586
Зарегистрирован: 09 июн 2006, 12:22

Отображение заранее подготовленного отчета в StiWebViewer

Сообщение Andrew »

Отлично! Всегда рады помочь!
Ответить