Click here to Skip to main content
15,888,286 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I've two system with following operating systems

1) Windows Server 2008
2) Windows XP Professional SP3

In windows server 2008 I've created SSRS reports and deployed. (URL-- http://123.123.1.123:8080/reports) report server url; and in XP I've created an application in which reportviewer is present. Following is my code behind.

MyReportViewer.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
                MyReportViewer.ShowCredentialPrompts = true;
                MyReportViewer.ServerReport.ReportServerUrl = new Uri("http://IP:8080/reports";);
                MyReportViewer.ServerReport.ReportPath = "/sample/report";
                MyReportViewer.ServerReport.Refresh();


When I execute the application the following error is displayed.

"The request failed with HTTP status 401: Unauthorized"

I've tried giving the " everyone" permission to the deployed folder in report manager. but it is displaying the same message
Posted
Updated 6-Dec-10 3:22am
v3
Comments
vinu.1111 7-Dec-10 2:10am    
hi.. everybody
i got the solution here..
http://community.discountasp.net/showthread.php?t=4402

but now again i'm in a problem
how to assign security role for different system in a network
for a folder or it can be report..
i want to assign diferent permission for different users..

1 solution

It may not be the reporting services folder that has authentication issues.
Read up on Configuring Authentication in Reporting Services.
I haven't done a lot of works with Reporting Services directly, but I've certainly encountered my share of authentication issues over the years.
Cheers.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900