You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Alan
I face the issue with this project, when fire the ( Report/ProcessReport ) it return 404 page not found
I work with .NET 5, my report work normally from SSRS portal.
protected override string ReportServerUrl { get { //You don't want to put the full API path here, just the path to the report server's ReportServer directory that it creates (you should be able to access this path from your browser: https://YourReportServerUrl.com/ReportServer/ReportExecution2005.asmx ) //return null; return "http://" + Environment.MachineName + "/reportserver"; } }
` public IActionResult ProcessReport()
{
var model = this.GetReportViewerModel(Request);
model.ReportPath = "/ReportWithASPNETCore/FirstReport";
Hi Alan
I face the issue with this project, when fire the ( Report/ProcessReport ) it return 404 page not found
I work with .NET 5, my report work normally from SSRS portal.
protected override string ReportServerUrl { get { //You don't want to put the full API path here, just the path to the report server's ReportServer directory that it creates (you should be able to access this path from your browser: https://YourReportServerUrl.com/ReportServer/ReportExecution2005.asmx ) //return null; return "http://" + Environment.MachineName + "/reportserver"; } }
` public IActionResult ProcessReport()
{
var model = this.GetReportViewerModel(Request);
model.ReportPath = "/ReportWithASPNETCore/FirstReport";
The text was updated successfully, but these errors were encountered: