C# – Access SharePoint Document Library from web application

csharepointsharepoint-2010sharepointdocumentlibrary

Is it possible to access a SharePoint 2010 document library from a web application? If so then could you point me in the right direction?

I need to write an application that will allow document versioning, check in/check out, download/upload and searching.

So far I have written a basic Windows Forms application that can do all of the functions mentioned previously but now I need to access them from a web application.

Best Answer

From a Windows Forms application, you can use the managed client object model to access SharePoint document libraries, etc. See this link for more information:

http://msdn.microsoft.com/en-us/library/ee857094(v=office.14).aspx

Related Topic