Hi techies, I have been trying for SSRS 2008R2 reports access from one of my server which are delpoyed on it (O.S windows 2008 R2 server) to my web application which is hosted on another server(O.S windows 2008 R2 server) ..I tried it by using reportviewer and also by passing the server credentials.Code : ReportViewer1.ShowCredentialPrompts = false; ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://IP:80/ReportServer"); ReportViewer1.ServerReport.ReportPath = "/EmployeeRpt/Employee List"; ReportViewer1.ProcessingMode = ProcessingMode.Remote; IReportServerCredentials irsc = new CustomReportCredentials("User Name", "Password", "domain"); ReportViewer1.ServerReport.ReportServerCredentials = irsc; ReportViewer1.ShowParameterPrompts = true; ReportViewer1.ShowPrintButton = true; ReportViewer1.ServerReport.DisplayName = "/EmployeeRpt/Employee List"; ReportViewer1.ServerReport.Refresh();I am getting an error : Unable to connect to the remote serverA connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond IPAddess:80plzz can any one help me..
↧