Custom Authentication with SSRS 2019 - reporting-services

I am trying to implement custom forms authentication with SSRS 2016.
I tried this two solutions but no one did the job :
https://estradaci.com/ssrs-custom-authentication-part-1/
https://medium.com/#Estradaci/ssrs-custom-identification-efbb1280e22d
i get always this error : rsServerConfigurationError
Does anyone know where I can find updated procedures for establishing custom authentication?
And Thanks

https://github.com/microsoft/Reporting-Services/tree/master/CustomSecuritySample
Not sure if you are trying to use ssrs 2019 or 2016 but that link should cover both versions

Related

Why is the SSRS Barcode breaks up with a space in between?

I have a SSRS report which I've initially created with SQL Server 2014 Report Builder (12.0.6024.0) using Code128 according to this post. It has been working great until we wanted to upgrade our SQL Server to 2016 and then I made the same report using SQL Server 2016 Report Builder (15.0.19611.0).
Now the issue is the new version does not support that custom code which I got from above mentioned post. After installing many Code128 fonts found one of them that works but it did not like all other fonts and barcodes won't show up.
So it would look like following figure
As the counter attack I installed that previously mentioned working one Code128 font which is IDAutomationC128L and turns out it works really until I realize this one glitch. As you can see in the bottom picture I compared the working version(2014) with the new version (2016) the glitch is there is a space in the middle of the barcode, sometimes it's in the Item Number field and sometimes it's under Raw Material Item Number field.
Here's the SQL Server 2014 version(Code128) for the same parameter
Here's the SQL Server 2016 version(IDAutomationC128L) for the same parameter
Does anybody know how to fix that issue? I have tried couple of other things too just to make sure, such as attaching the newest .NET version's(4.8.4390.0) System.Drawing.dll just becuase I thought SQL Server 2016 might not support .NET version 2.0(which I'm using for SQL Server 2014)
Appreciate all your support!

SSRS Query Designer Changed in Visual Studio 2017

I have a problem that started Monday (10/1/18) where the query designer for report projects (*.rptproj) has changed, I believe to the Report Builder Visual Designer. This has the unfortunate effect of me having to use the Text-Based Designer for managing the dataset query in the report, which is less than optimal.
When I try to change out of the Text-Based Designer, I get this message:
This happens for all our reports in our Reporting project. Has anyone else run into this issue? All of my Google-Fu attempts to find a solution have failed.
From what I can tell, the Microsoft Reporting Services Projects extension in VS was updated on 9/28/18, but I don't see anything in the change log for such a change. Any help would be appreciated. Thanks.
Thanks to #B1313, his answer has to his question has done the trick for me.
Microsoft Reporting Services Projects Visual Studio 2017 Extension 2.0 Downgrade to 1.24

Unknown error when upgrading from SSRS 2014 to 2016

I had to upgrade the report server used by some application from SSRS 2014 to SSRS 2016.
I did the migration manually, because the old and new SSRS were installed on different machines, and I could not do an in-place update.
So the approach was (long story short):
backup ReportServer on SSRS 2014
install SSRS 2016 on new server
restore ReportServer database
update its structure to match SSRS 2016; I used Sql Compare to get structure from an in-purpose, empty ReportServer database created by SSRS 2016
added record in ServerUpgradeHistory with version for SSRS 2016 (173)
restored the Encryption keys from SSRS 2014.
Everything works ok, with one small issue.
When I try to open SSRS Web Portal URL (http://...myServer.../Reports), or to refresh main page, I get the following error popup.
This error doesn't appear to affect the functionality of SSRS - all reports work just fine. Also it does's appear when opening Web Service URL (http://...myServer.../ReportServer).
So it's just annoying so far.
I searched for the guid string in Catalog table (I thought it might be some folder name or something), but I found nothing.
Does anyone have any idea where it comes from and how to get rid of it?
Thank you
Edit
Recently I updated from SSRS 2016 to 2017, and I kept carrying this error with me.
However I found the offending item. It is in Catalog table, and it is of Type = 3 (Resource), with mime-type application/octet-stream
I deleted it from catalog (I did a backup of it into a separate table - catalog_bak), but I still get the error when I load main page in (/reports)
Beside that, it never pops-up again, with one exception: it always shows-up when I access Site Settings -> Branding
I guess it has something to do with branding packages.
Does anyone knows where are they stored, and how can I uninstall / clean-up that?
A Branding Package is created by a user. If the original package can't be found or is corrupted it should revert to the default. Have you tried removing the package or creating and uploading a new one? Also, try downloading SQL Server Mobile Report Publisher (https://www.microsoft.com/en-us/download/details.aspx?id=50400) and then connect your server with it. It may contain a theme that was used on your original server.
For me Uninstall and Reinstall did the trick for me.

SSRS Reports for Project Server 2016

I need help to design Reports in SSRS for Project Server 2016.
Is there anyone to help in this regard.
I have connected to database and can see some view where I can extract the data, but I need proper way to follow for creating reports.
Thanks
All you need to reach your goal is here maybe :
https://learn.microsoft.com/en-us/sql/reporting-services/create-a-basic-table-report-ssrs-tutorial

SSRS : Need to run SSRS reports on sharepoint site using SSIS

I have created few SSRS reports in SQL server 2012 with Visual Studio 2010 version.
And I have deployed them to one SharePoint Site.
I want to make this automated, so that data available in the reports are up to date.
So, now I would like to create SSIS package which will run periodically to get up to date data using integration services. I am very much new to SSIS. I have tried to look at different sites for this, but I am not getting an exact idea from where to start.
Can anyone please guide me on this? How can I create a WSDL file URL for the SharePoint report? Do I really need it if report is already made in SSRS or do I just want to run that?
Thank you.
Would SSRS caching solve your problem?
Otherwise, there's nothing SSIS specific to solving your problem. You will simply need to use the .NET library to visit the page with the appropriate parameters. Visit your report page and copy the full URL.
Inside a Script Task use that URL as part of the WebClient. You'll probably need to supply credentials with this. No need to deal with storing the output, you'll simply want to validate that you get a 200 message code
Can you clarify what you are trying to achieve? Do you want to automate the running of the Reporting Services reports? In that case you should look at Report Subscriptions.