HTTP Error 404.0 On SSRS Report
Hi, We r creating an ssrs report. and the location is a local. but when we try to view the report an error is displaying The error is " HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailable" We have checked the web.config fie it is like this " <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" /> Still the error remains. Whether we need to store the rdl file inside the folder along with the page we r accessing??? Or any other permission related issues??? We r using the IIS 7.5?? Do we have any issues with the this version of IIS?? Please advice...George Mathew
February 23rd, 2011 6:43am

this is the code that I am using for the above and rdlxml is the source of the rdl created with c# string xml = rdlXml; ReportViewer1.Reset(); FileStream fstream = new FileStream(Path, FileMode.OpenOrCreate); fstream.Close(); TextWriter txtWritter = new StreamWriter(@"Path"); txtWritter.Write(rdlXml); txtWritter.Close(); ReportViewer1.ProcessingMode = ProcessingMode.Local; ReportViewer1.LocalReport.ReportPath = Path; ReportDataSource rd = new ReportDataSource(); rd.Value = "DataSet1"; rd.Name = "DataSet1"; ReportViewer1.LocalReport.DataSources.Add(rd); ReportViewer1.LocalReport.Refresh(); George Mathew
Free Windows Admin Tool Kit Click here and download it now
February 23rd, 2011 8:33am

Hi, Could you open IIS manager, navigate to the website's content view, then right-click and browse the file ? Also, please make sure ASP role service is installed on the server. Classic ASP is not installed by default on IIS 7.0 and IIS 7.5 http://learn.iis.net/page.aspx/562/classic-asp-is-not-installed-by-default-on-iis-70-and-iis-75/ Regards, PS
February 23rd, 2011 8:53am

I am not using classic asp. It is ASP.NET. and I am also getting the file when I am browsing it from the IIS. But when I access it through the website same error remainsGeorge Mathew
Free Windows Admin Tool Kit Click here and download it now
February 23rd, 2011 11:54pm

I fixed it,,,,, Follow this link http://otkfounder.blogspot.com/2007/11/solving-reportviewer-rendering-issue-on.htmlGeorge Mathew
February 24th, 2011 6:37am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics