Hi Chetan, MOSS 2007 is fully .NET 2.0 (built on ASP.NET 2.0 actually - no COM). You can find the SDK at: http://msdn2.microsoft.com/en-us/library/ms550992.aspx
Note the class library and web service reference down the tree abit. You can automate pretty much anything and everything you want in MOSS 2007 with IronPython (at least I can in C#, so should be no probs in IP). Hope that helps, Mitch http://softwareindustrialization.com -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 4:15 PM To: users@lists.ironpython.com Subject: users Digest, Vol 33, Issue 11 Send users mailing list submissions to users@lists.ironpython.com To subscribe or unsubscribe via the World Wide Web, visit http://lists.ironpython.com/listinfo.cgi/users-ironpython.com or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of users digest..." Today's Topics: 1. Re: Automation of Sharepoint Server 2007 (Dino Viehland) ---------------------------------------------------------------------- Message: 1 Date: Mon, 9 Apr 2007 20:09:43 -0700 From: Dino Viehland <[EMAIL PROTECTED]> Subject: Re: [IronPython] Automation of Sharepoint Server 2007 To: Discussion of IronPython <users@lists.ironpython.com> Message-ID: <[EMAIL PROTECTED] rosoft.com> Content-Type: text/plain; charset="us-ascii" It looks like there are managed APIs (maybe they're just COM wrappers?) for SharePoint which you could use from IronPython. A quick search turned up this site http://www.codeproject.com/useritems/SharePoint_Automation.asp which is using SharePoint from C#. From IronPython you would add references to the assemblies via the clr module: import clr clr.AddReference('Microsoft.SharePoint') ... and same for the other assemblies they suggest referencing ... >From there you need to import the appropriate namespaces, e.g.: import Microsoft.SharePoint as SP And then you could start inspecting the namespaces and types available: dir(SP) and drill down into the available functionality. That should line up with what you see for other examples of automating SharePoint on the web. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of chetan soundankar Sent: Monday, April 09, 2007 1:36 PM To: users@lists.ironpython.com Subject: [IronPython] Automation of Sharepoint Server 2007 Hi, Is it possible to Automate tasks such as creating a site, checking content types in sharepoint server 2007 with IronPython? if yes how can you give me some direction I am completely new to the Automation under COM environment. -Chetan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.ironpython.com/pipermail/users-ironpython.com/attachments/20070 409/4e4b187d/attachment.html ------------------------------ _______________________________________________ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com End of users Digest, Vol 33, Issue 11 ************************************* _______________________________________________ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com