Creating SharePoint 2007 list items via the Web Dav interface - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T00:51:38Z http://stackoverflow.com/feeds/question/72773 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface 1 Creating SharePoint 2007 list items via the Web Dav interface Moo 2008-09-16T14:16:54Z 2008-09-17T08:01:40Z <p>SharePoint 2007 (both Moss and Wss) exposes document libraries via web dav, allowing you to create documents via essentially file system level activities (e.g. saving documents to a location).</p> <p>SharePoint also seems to expose lists via the same web dav interface, as directories but they are usually empty. Is it possible to create or manipulate a list item somehow via this exposure?</p> http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface/77207#77207 1 Answer by x0n for Creating SharePoint 2007 list items via the Web Dav interface x0n 2008-09-16T21:15:24Z 2008-09-16T21:15:24Z <p>In short: No. </p> <p>Longer answer: Kinda. Any item stored in sharepoint is in a list, including files. But not all lists have files. A document library is a list with each element being a file+metadata. Other lists (like announcments) are just metadata. Only lists that contain files are exposed via webdav, and even then you are limited to mucking around with the file - there is no way to use webdav (afaik) to edit the metadata.</p> <p>Hope this helps.</p> <p>Oisin.</p> http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface/77301#77301 0 Answer by jdporter for Creating SharePoint 2007 list items via the Web Dav interface jdporter 2008-09-16T21:25:10Z 2008-09-16T21:25:10Z <p>Agreed. The only thing exposed to webdav is a list item's attachment (or a library's documents). Even if you bring up a file's properties in explorer, there's no options for list data.</p> <p>If you're working with Office 2007 documents, you can create a <a href="http://msdn.microsoft.com/en-us/library/ms550037.aspx" rel="nofollow">document information panel</a> that can be tied into sharepoint.</p> http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface/79838#79838 0 Answer by Sam Yates for Creating SharePoint 2007 list items via the Web Dav interface Sam Yates 2008-09-17T04:00:58Z 2008-09-17T04:00:58Z <p>No, but in my experience most things looking to speak WebDAV to something are pretty much expecting to work with files or documents of some sort. Since non-library lists in SharePoint don't really have an associated file (yeah, they can have attachments, but that's not the same), then effectively the primary construct WebDAV is built around (document) is missing. What would you be Authoring and Versioning?</p> <p>If you are writing your own client, there are <a href="http://msdn.microsoft.com/en-us/library/lists.aspx" rel="nofollow">robust web services</a> for interacting with lists (both the library and non-library varieties)</p> http://stackoverflow.com/questions/72773/creating-sharepoint-2007-list-items-via-the-web-dav-interface/80973#80973 0 Answer by Moo for Creating SharePoint 2007 list items via the Web Dav interface Moo 2008-09-17T08:01:40Z 2008-09-17T08:01:40Z <p>Thats what I thought, thanks guys!</p>