I need to access a sharepoint application from my desktop application (written in C#). How should I pass credentials and verify authentication?
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.
|
|
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; |
|||
|
|
|
Maybe you will find this a handy reference. |
|||