If you became a customer of the Syncfusion� Reporting Platform or the Report Viewer, Report Designer, or Report Writer components before October 2019 and have questions related to those products, you can request support through our forum system. However, please note that this support system is only for existing customers who are still using the Syncfusion� Reporting Platform or its components and not for new customers looking for reporting products from Syncfusion�.

For new customers or those with general reporting questions, we recommend contacting our support team at https://support.boldreports.com/, which is a separate brand created by Syncfusion� for its reporting solutions. Our team will be happy to assist you with any questions you may have.

Thank you for choosing Syncfusion� for your reporting needs.

I Use Report Error Webpage

View
------------
<div style="width:100%; height:100%; position:absolute;">
        @(Html.EJ().ReportViewer("reportsample")
                .ProcessingMode(Syncfusion.JavaScript.ReportViewerEnums.ProcessingMode.Local)
                        .ReportServiceUrl(VirtualPathUtility.ToAbsolute("~/api/ReportApi"))
                        .ReportPath("~/App_Data/GroupingAggregate.rdlc")
                        .DataSources(ds => ds.Name("Sales").Value(ViewData["DataSource"]).Add())
        )
    </div>

Error File Attach !!!
Pls. Help Me!!!
Thank Very You
MJ

Attachment: Capture_RDC_REPORT_ERROR_e0c37706.zip

3 Replies

MS Mahendran Shanmugam Syncfusion Team March 26, 2018 10:58 AM UTC

Hi Miclejee, 

Thanks for contacting Syncfusion support.  

The mentioned issue might occur due to WebAPI not added in your application or Web API Routing is not registered properly in your application. Our ReportViewer control requires the WebAPI service to process the report in server side and render the report at client side based on processed result. We could not render/process the report without WebAPI Restful service. So we request you to add the WebAPI restful service to process the report and register the WebAPI Routing in global.asax.cs page to avoid the mentioned issue at your end as shown in below code example. 

WebAPiConfig:  
    public static class WebApiConfig  
    {  
        public static void Register(HttpConfiguration config)  
        {  
            config.Routes.MapHttpRoute(  
                name: "DefaultApi",  
                routeTemplate: "api/{controller}/{action}/{id}",  
                defaults: new { id = RouteParameter.Optional }  
            );  
        }  
    }  

Global.asax.cs:  
    public class MvcApplication : System.Web.HttpApplication  
    {  
        protected void Application_Start()  
        {  
            AreaRegistration.RegisterAllAreas();  
  
            WebApiConfig.Register(GlobalConfiguration.Configuration);  
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);  
            RouteConfig.RegisterRoutes(RouteTable.Routes);  
        }  
    }  

We have prepared the sample and it can be downloaded from below location,  

Please refer to the below UG documentation for more details about sample creation,  

Please refer the below MSDN forum for more details on this,  

Regards, 
Mahendran S. 



MJ MJ May 15, 2018 09:47 AM UTC

But it works well on the development machine.
But when it comes up, IIS will have problems as per attachments.
------------------------
SCRIPT5007: Unable to get property 'showExceptionsInDialog' of undefined or null reference
File: ej.web.all.min.js, Line: 10, Column: 7321489
-------------------------

Attachment not attached
I Upload Complete but no filename on Attach file:
I just have to close the window.
And Submit
But there is no attachment.


YD Yuvaraj Devarajan Syncfusion Team May 16, 2018 10:00 AM UTC

Hi Miclejee, 
 
But it works well on the development machine.
But when it comes up, IIS will have problems as per attachments.
 
------------------------
SCRIPT5007: Unable to get property 'showExceptionsInDialog' of undefined or null reference
File: ej.web.all.min.js, Line: 10, Column: 7321489
 
------------------------- 
 
We have checked the mentioned problem by loading the ReportViewer sample and its working properly at our end. So can you please share the issue reproducible “ej.web.all.min.js” script file or version detail to validate the mentioned problem at our end. For your reference, we have prepared a sample and it can be downloaded from below location,  
 
Attachment not attached
I Upload Complete but no filename on Attach file:
I just have to close the window.
And Submit
But there is no attachment.
 
 
We have fixed the mentioned problem and now you can upload the files in this forum.  
 
 
Regards, 
Yuvaraj D. 


Loader.
Up arrow icon