Create wiki pages on SharePoint with web services - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:29:47Z http://stackoverflow.com/feeds/question/962608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/962608/create-wiki-pages-on-sharepoint-with-web-services 0 Create wiki pages on SharePoint with web services Stefan 2009-06-07T19:21:31Z 2009-06-07T21:17:18Z <p>Hi,</p> <p>the title says it all: With which methods do I create wiki content on SharePoint, using the provided web services?</p> <p>I've searched the MSDN docs up and down - with no result.</p> <p>Regards..</p> http://stackoverflow.com/questions/962608/create-wiki-pages-on-sharepoint-with-web-services/962670#962670 1 Answer by nikmd23 for Create wiki pages on SharePoint with web services nikmd23 2009-06-07T19:54:34Z 2009-06-07T19:54:34Z <p>You create any list in SharePoint using the List.asmx web service.</p> <p>That service has a method named AddList which takes 3 parameters:</p> <ol> <li>Name - This is what your new list will be named.</li> <li>Description - The description of your new list.</li> <li>Template ID - This is an int that specifies the type of list to create.</li> </ol> <p>In the case of a wiki - you will use Template ID 119.</p> <p>The documentation only partially lists these template ID's. A better list can be found at <a href="http://simeonlobo.wordpress.com/2008/02/27/sharepoint-list-template-ids/" rel="nofollow">http://simeonlobo.wordpress.com/2008/02/27/sharepoint-list-template-ids/</a></p> <p>NOTE: Use the URL property of the List web service to specify where the new list should be created.</p> http://stackoverflow.com/questions/962608/create-wiki-pages-on-sharepoint-with-web-services/962854#962854 1 Answer by JD for Create wiki pages on SharePoint with web services JD 2009-06-07T21:17:18Z 2009-06-07T21:17:18Z <p>I found <a href="http://sites.google.com/site/sharepointwikiuploader/" rel="nofollow">this article</a> on the web which appears to do what you want.</p>