Hello.
We are developing a report server 2019 in native. From a visual studio project, in a .cshtml view, we show the mobile reports embeded in the page.
When the user goes to that page, we connect in local (localhost) to the SSRS, and the explorer asks (credential prompt) for user data to connect (this user is defined in the SSRS portal web) wich uses the domain of the local pc.
But now we want to move the project to production (and change "localhost" for the server direction). The VS project to one server and the SSRS and DB to other.
When the user will use the web application and connect to the SSRS server, what will happen?
The user's pc will have x domain wich will not be the same as the server where the SSRS will be stored. We cannot register the user in the SSRS web portal since this will only accept users with same domain of the host.
For SSRS credentials and datasource connection, we have specified a sqluser in order to avoid the user to introduce any credentials.
But it didn't work. It ask for a user registered in the web portal.
So the questions are:
1) Can we avoid to ask the user to write the data registered in the web portal (avoid the prompt)? Keep in mind that the user has already had to enter their data to enter the visual studio website (and we do not want them to enter a second user to enter the SSRS server and display the reports).
2) And, I f we cannot avoid 1) How can a user from client pc with x domain connect to SSRS server with y domain? Can we fill the prompt with credentials from code?