.net - Integrate SSRS with AngularJS? -


i have project, frontend using pure html5/angularjs, webservice using .net, , report ssrs.

i have major problem of displaying ssrs reports on frontend. tried embed report in iframe pops credentials always, not practical.

i want know if possible backend can retrieve ssrs report, wrap html or other consumable format, exposes webservice. frontend call webservice , display on screen.

is there sample code doing this?

take @ answer display pdf reporting services except in case download format .html , embed in iframe

so like:

uri uridownload = new uri("http://myreportserver?myreport&rs%3acommand=render&rs:format=html"); string strsavepath = @"c:\temp\report.html";  system.net.webclient wcli = new system.net.webclient(); wcli.downloadfile(uridownload, strsavepath); 

then set iframe's src downloaded file.


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -