I need help setting up SSRS and Laravel to work with our windows server.
I want to get reports from SSRS with Laravel web application by using URL.
Example URL:
http://192.168.0.22:100/ReportServer/Pages/ReportViewer.aspx?%2freportst%2fReportExample&name=John&surname=Doe&rs:Command=Render
SSRS needs to send reports to web server, web server(Laravel app) will return it to client browser. In that way I'm not exposing URL and parameters between SSRS and web server.
I want to retrieves report with php file_get_contents() method. But I can't get access to SSRS report because of Windows authentication that SSRS i asking for everytime.