Hello,
I think problem is wep.api handling/routing.
I use previously downloaded x:\Syncfusion\15.3.0.26\JavaScript\ejservices\App_Data\Reports\Product Catalog.rdlc fro test.
I run x:\Syncfusion\15.3.0.26\JavaScript\ejservices web.api service in local, and syncfusion angular 2 example offline (sample report path routed to local server) , no problem. I see report and I get export content.
But when use our web api , report show, report print is ok, but when requesting export to any options, request goes to controller, I see with debugger , but not return export content.
Our web.api version 2.0 and use .net 4.5.1 . and config route is,
config.Routes.MapHttpRoute(
name: "ActionApi",
routeTemplate: "api/{controller}/{action}",
defaults: new {action= RouteParameter.Optional}
);
Hello Again,