I have a console application to download a file from a SharePoint site. The sharepoint site uses claims based authentication.

This code throws a 403 Forbidden exception. The specified Network credential has full access to the site, and is able to download the same file from a browser.

WebClient webClient = new WebClient();
webClient.Credentials = new NetworkCredential(username,Password,domain);
byte[] fileData = webClient.DownloadData(urlOfAFile); 
FileStream file = File.Create(localPath);
file.Write(fileData, 0, fileData.Length);

Any idea how to fix this?

link|improve this question

1  
Is the site set to require ssl (check directoy security in IIS) – Mikael Svenson Jun 11 '10 at 14:08
Yes... The site is configured to use HTTPS – ashwnacharya Jun 11 '10 at 21:09
Any luck with this problem? I am running into a similar issue. – Anonymous Jan 15 '11 at 12:10
feedback

1 Answer

Maybe a bit late, but adding the right request header before makign the resuest solves the problem:

webClient.Headers.Add("X-FORMS_BASED_AUTH_ACCEPTED", "f");
link|improve this answer
Hi, Thanks for answering. After adding your code snipped, I am getting a 401 Exception. Earlier, I was getting a 403 exception. Am I missing anything? – ashwnacharya Apr 5 '11 at 4:55
Are you trying to log in with Windows authentication or Forms authentication? – Mel Gerats Apr 6 '11 at 8:43
Windows Authentication. – ashwnacharya Apr 23 '11 at 9:21
Hi @ashwnacharya Have you solved this problem? I also have the same problem, if you know how to solve it, can you post your answer here? Thanks! – nixjojo Apr 27 at 7:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.