I have a project 'Reports1' in which I have created an SSRS report. The database is on another server. I can preview the reports here, and they work fine. I do not have access on this computer to deploy the reports. Neither I can debug it, as there is only 1 report in the solution and no startup page.When I tried to implement those reports in web application: How can I find the URL on which reports would be running ?
This is how I tried to implement reports:In Source Page:\[code\] <rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote"> </rsweb:ReportViewer>\[/code\]In Code Page: \[code\] ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote ReportViewer1.ServerReport.ReportServerUrl = New Uri("http:localhost/ReportServer/") ReportViewer1.ServerReport.ReportPath = "Report1" ReportViewer1.ShowParameterPrompts = False ReportViewer1.ShowPrintButton = True ReportViewer1.ServerReport.Refresh()\[/code\]In web.config I added \[code\]<httpHandlers> <add verb="*" path="Reserved.ReportViewerWebControl.axd" .....><httpHandlers>\[/code\]When i try to run my website report page, it gives me error:\[code\]The path of the item 'Report1' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. (rsInvalidItemPath)\[/code\]Any pointers to solution ? How can I make my website point correct report path ?
This is how I tried to implement reports:In Source Page:\[code\] <rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote"> </rsweb:ReportViewer>\[/code\]In Code Page: \[code\] ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote ReportViewer1.ServerReport.ReportServerUrl = New Uri("http:localhost/ReportServer/") ReportViewer1.ServerReport.ReportPath = "Report1" ReportViewer1.ShowParameterPrompts = False ReportViewer1.ShowPrintButton = True ReportViewer1.ServerReport.Refresh()\[/code\]In web.config I added \[code\]<httpHandlers> <add verb="*" path="Reserved.ReportViewerWebControl.axd" .....><httpHandlers>\[/code\]When i try to run my website report page, it gives me error:\[code\]The path of the item 'Report1' is not valid. The full path must be less than 260 characters long; other restrictions apply. If the report server is in native mode, the path must start with slash. (rsInvalidItemPath)\[/code\]Any pointers to solution ? How can I make my website point correct report path ?