Consuming Sharepoint web services

asp.netsharepointweb services

How can I consume Sharepoint web services so that I can be able to use Sharepoint document library in the stand alone asp.net application. I have added the web reference to http://<server-url>/_vti_bin/lists.asmx

Best Answer

The SharePoint web services documentation on MSDN contains several how-tos and walkthroughs. The most important ones from what you've described are:

If you have trouble finding out how to do something, search this site. Many questions about using the SharePoint web services have already been asked here, e.g. this one for uploading documents.

Be warned: relying solely on these web services will probably cause you problems at some point. They are missing a lot of functionality present in the SharePoint user interface and object model. Make sure you test all functionality required with proof of concepts before committing to this approach, or be ready to write a custom web service.

Related Topic