unable to configure reporting services web part viewer - reporting-services

I am trying to display an SSRS report inside the sharepoint 2010 report viewer web part here is my configuratio
SSRS web service url servername:port/reports
my report path is: Folder/Report1
having entered this information in the web part's configuration all I see is a directory view of all folder
Sever/Reports -/
Data Sources
DataSets
Folder
any ideas?
Thanks

How about trying to configure with servername:port/ReportServer instead ?
These are the web services (/reportserver ... unless your SSRS is configured in an "exotic" way), the other (/server) is the web administration interface.

Related

SSRS Report Viewer Unable to Pass Credentials to Report Server from Hyperlink

We have a 3-rd party (like a portal) hosting our SSRS Report Viewer inside an iFrame. The source of the iFrame is an ASP.NET web form page with the Report Viewer control. We pass the credentials to the Report Viewer from the code behind and everything works fine. Reports render in the viewer and the aspx page is running on an HTTPS site.
The report developer placed a hyperlink on a report that opens an non-HTTP url to the Report Sever that is supposed to download an Excel file. But the Report Server is behind a DMZ (actually running as a Windows Service and not IIS) and prompts users for credentials and only downloads the Excel file when the Report Server credentials (same ones used by the Report Viewer) are entered. This sounds like a double-hop issue.
Anybody trying to browse to the URL manually also get a prompt until they are authenticated because the SSRS is not in our domain.
TL;DR;
Is there anyway to pass the credentials of the Report Server from within a hyperlink inside the Report Viewer?
Functions as designed. Reports Developer did not really understand implementation details and found a work around.

Web Service URL Not Working (PowerBI Desktop-Sql ServerReportingServices)

I can access my PowerBI desktop report on Reporting Services of web portal url(manager) at http://sivakumar/Reports, but I am unable to access the same report on Reporting Services of Web Service URL (Viewer) at http://sivakumar/ReportServer.
I configured reporting service the right way and I am using Sql Server Preview Reporting Services Enterprise Evaluation Edition 14.0.1.353
I am getting below error, can any one please help me with it?
Reporting Services Error
The operation you are attempting on item '/PowerBI_SSRS' is not allowed for this item type. (rsWrongItemType)
Power BI reports can only be viewed or downloaded from the portal. If you need to embed Power BI reports use the &rs:embed=true parameter
At the time of writing this (Sep 2017), the only way seems to be to use the Report portal URL and add ?rs:embed=trueat the end.
See Developer handbook overview, Power BI Report Server
Your embedded URL should look like:
http://reportServerName/reports/powerbi/PowerBIReport?rs:embed=true

SSRS Report as Web View

Hi i create a report in SSRS and i want to deploy as a web base so any one can view report with one HTTP link can any one tell me how can i do that?
Some one said i need Sharepoint and someone said NO u just need IIS install in ur pc and it will work please help me out this Thanks.
• Exactly What type of Storage is required - Local or Network?
• How will these SSSRS reports be generated?
• How will Live data reports be uploaded. Can Data see the network locations or does it need to be Local ?

Report Service Manager Don't Display the classic interface

i'm using SQL Server 2012 and i've created a report with The Data Tool.
Now i want to publish this report on the Server Report.I've changed the virtual folder in "ReportServer_MONITORING"
but when i write:
http://<servername>/ReportServer_MONITORING
I don't get the page of the manager but something like a simple exploration page:
Can someone help me?
Thanks
You're going to the Report Server Web Service web page; this is different from the Report Manager website.
You most likely need:
http://<servername>/Reports_MONITORING
You can confirm by looking in the Reporting Services Configuration manager and confirming the two URLs:

How to use SSRS inside SPA framework (Durandal)?

I am using SSRS Reporting service as a part of my project and i am doing this project using ASP.net with SPA framework (durandal). My question is that is it possible to embed SSRS inside SPA?
SSRS reports are saved as rdl or rdlc files which are just xml files.
SPAs are run in the browser using JavaScript.
SSRS reports in order to be rendered into a presentable report they need to be run on a machine that has the .NET framework. This is usually a web server or a report server.
What you can do is create a web service that will render the reports for you and return them back in a format you want, like pdf, img, or html. Then have your SPA just call those web services to get whatever reports you want.