Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Integrate report from Reporting server 2016 via iframe in SharePoint 2013

I'm trying to integrate a Report from Reporting Server2016 into our SharePoint2013.
It worked fine with Reporting Server 2012 but not anymore with the new enviroment.

I've alread read a bit around and found out that the Reporting Server is sending the Report with X-Frame-Options = SAMEORIGIN in the answer header.

Is there the possibility to turn that off in the Reporting server?

Installing a Browser Plugin that ignores the header is not an option.

like image 312
NerdFlanders Avatar asked Aug 05 '16 13:08

NerdFlanders


1 Answers

Starting from RS 2016 you can append rs:Embed=true to report URL, it will remove X-Frame-Options from response. Your report URL then will look this:

http://your-server-name/reports/path/and/reportname?rs:Embed=true

Prooflink: SSRS team blog

like image 150
grafgenerator Avatar answered Nov 13 '22 08:11

grafgenerator