asked on
ASKER
Microsoft Sharepoint is a software platform and family of software products used for collaboration and web publishing combined. These capabilities include developing web sites, portals, intranets, content management systems, search engines, wikis, blogs, and other tools for business intelligence and collaboration. SharePoint has a Microsoft Office-like interface, and it is closely integrated with the Office suite.
TRUSTED BY
- Use the builtin webservices. The lists webservice will allow you to perform a CAML query against the list. (http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems(v=office.12).aspx)
- Write your own webservice and perform your own queries via the object model.
In SP Foundation you have more options, in addition to the above:
- Use the Rest interface to lists
- Use the client object model (implementations for .NET, js and silverlight)
If you want cross compatibility between 2007 and 2010 i recommend using the Lists webservice.
Hope this helps.