Hi, telerik!
I have silverlight application, wich use Telerik Silverlight ReportViewer. raise an error:
" Unhandled Error in Silverlight Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
at Telerik.Reporting.Service.SilverlightClient.ListRenderingExtensionsEventArgs.get_Extensions()
at Telerik.ReportViewer.Silverlight.ReportViewerModel.OnListRenderingExtensionsCompleted(Object sender, ListRenderingExtensionsEventArgs e)
at Telerik.Reporting.Service.SilverlightClient.ReportServiceClient.OnListRenderingExtensionsCompleted(Object state)
"
Can you help me , please, with this question!
I have silverlight application, wich use Telerik Silverlight ReportViewer. raise an error:
" Unhandled Error in Silverlight Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
at Telerik.Reporting.Service.SilverlightClient.ListRenderingExtensionsEventArgs.get_Extensions()
at Telerik.ReportViewer.Silverlight.ReportViewerModel.OnListRenderingExtensionsCompleted(Object sender, ListRenderingExtensionsEventArgs e)
at Telerik.Reporting.Service.SilverlightClient.ReportServiceClient.OnListRenderingExtensionsCompleted(Object state)
"
Can you help me , please, with this question!
8 Answers, 1 is accepted
0
Hi sofi sofi,
Steve
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
It is very strange that this error is raised only a specific browser version and unfortunately we've not been able to reproduce the problem on our end using our online examples and IE 6 (see attached screenshot).
Best wishes,Steve
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

sofi sofi
Top achievements
Rank 1
answered on 08 Dec 2009, 08:04 AM
Hi, Steve!
May be problem is in another thing? This is the error of my report service- something is rong with my config file:
" Service 'Telerik.Reporting.Service.ReportService' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element."
May be problem is in another thing? This is the error of my report service- something is rong with my config file:
" Service 'Telerik.Reporting.Service.ReportService' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found for your application, or because no service element matching the service name could be found in the configuration file, or because no endpoints were defined in the service element."
0

sofi sofi
Top achievements
Rank 1
answered on 08 Dec 2009, 08:09 AM
May be problem is that my server is IIS6?
0

sofi sofi
Top achievements
Rank 1
answered on 08 Dec 2009, 02:07 PM
yes, problem is that on IIS7 everithing is fine,but on IIS6 it's fall!
0

Chris Gillies
Top achievements
Rank 1
answered on 08 Dec 2009, 05:48 PM
Sofi, most likely you have not configured your server to host Silverlight applications and that is the real problem and not the viewer (if you claim that it works on IIS). Did you see those threads:
Cheers
- http://learn.iis.net/page.aspx/262/configuring-iis-for-silverlight-applications/
- http://forums.silverlight.net/forums/t/11187.aspx
Cheers
0

sofi sofi
Top achievements
Rank 1
answered on 09 Dec 2009, 07:11 AM
Thanks a lot , Chris for you reply. I have just rezolved my problem!
0

Steve
Top achievements
Rank 1
answered on 23 Feb 2010, 07:24 AM
Telerik.Reporting.Service.SilverlightClient.ListRenderingExtensionsEventArgs.get_Extensions()
I am getting this error when trying to deploy to Azure. My Silverlight application is working OK, and the Telerik Report View looks OK, but it will not display the report and throws the above exception.
Thanks for the help,
Steve
I am getting this error when trying to deploy to Azure. My Silverlight application is working OK, and the Telerik Report View looks OK, but it will not display the report and throws the above exception.
Thanks for the help,
Steve
0

Rushikesh
Top achievements
Rank 1
answered on 09 Jul 2010, 12:06 PM
Hi,
I have silverlight application, wich use Telerik Silverlight ReportViewer. raise an error:
An exception occurred during the operation, making the result invalid. Check InnerException for exception details.
. when I am try to do as following with report
on report.cs file i m binding dataset from other sorce and return me dataset objData.setReportData(value1,value2.......)
DataSet dtSet = new DataSet();
dtSet=objData.setReportData("test@mysoft.com", "Monthly Practice Details", "2009-01-01", "2009-12-31", "practiceID='0'");
this.Report.DataSource = dtSet.Tables[0];
}
plz give solution as soon as possible
I have silverlight application, wich use Telerik Silverlight ReportViewer. raise an error:
An exception occurred during the operation, making the result invalid. Check InnerException for exception details.
. when I am try to do as following with report
on report.cs file i m binding dataset from other sorce and return me dataset objData.setReportData(value1,value2.......)
protected void Page_Load(object sender, EventArgs e){
DataSet dtSet = new DataSet();
DataSQL objData = new DataSQL();
dtSet=objData.setReportData("test@mysoft.com", "Monthly Practice Details", "2009-01-01", "2009-12-31", "practiceID='0'");
this.Report.DataSource = dtSet.Tables[0];
}
plz give solution as soon as possible