I'm a developer trying to add reporting services to our web software.. but have hit a snag.
I have 2 virtual machines, one with sql 2014 DBs on and a new one that has SQL 2019 with reporting services, both set up to take user/password credentials, not in a domain.
I created a simple report and it links to a 2019 db on the same machine and runs fine.
I change the datasource to point to an sql 2014 db and again running it from the reporting server visual studio project it works fine and does connect to the remote virtual's DB.
I then created an asp.net website on a completely different machine and added a reportviewer control to a page, which I point at the reporting server. if the reporting server points to a 2019 DB it works ok.. but when I change the datasource in the report to point to the 2014 db virtual, it gets a credential error. I've even tried using the sa user on the 2014 DB and again, it works fine when called from the report server but not remotely from my asp.net app.
I have tried passing the connection string from the client website to use in the report datasource and again that works if using the 2019 db but not the 2014 one.
What am I missing?
Hope someone can help
Adrian