Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to access a sharepoint application from my desktop application (written in C#). How should I pass credentials and verify authentication?

share|improve this question
What do you mean by "access a sharepoint application" exactly? What do you need from the application? If you only need to access List(s) use what Ashutosh gave in his answer otherwise please elaborate. – Shadow Wizard Oct 28 '10 at 11:37

2 Answers

up vote 5 down vote accepted

1.Add WebService reference(Name : SourceLists) to the project (Web service URL https://……./sites/_vti_bin/lists.asmx) 2. SourceLists.Lists sourceListService = new SourceLists.Lists();

System.Net.NetworkCredential networkCredentials = new System.Net.NetworkCredential(“userid”, “pwd”);

sourceListService.Credentials = networkCredentials;

share|improve this answer

Maybe you will find this a handy reference.

share|improve this answer
not really ; 15 characters – Faisal Oct 28 '10 at 7:32
aha ; 15 characters – Younes Oct 28 '10 at 7:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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