Create wiki pages on SharePoint with web services - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T13:29:47Zhttp://stackoverflow.com/feeds/question/962608http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/962608/create-wiki-pages-on-sharepoint-with-web-services0Create wiki pages on SharePoint with web servicesStefan2009-06-07T19:21:31Z2009-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#9626701Answer by nikmd23 for Create wiki pages on SharePoint with web servicesnikmd232009-06-07T19:54:34Z2009-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#9628541Answer by JD for Create wiki pages on SharePoint with web servicesJD2009-06-07T21:17:18Z2009-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>