Update:
The External Collaboration Toolkit for SharePoint (ECTS) is now available exclusively on CodePlex, Microsoft’s open source Web site. To access these resources, visit the Community Kit for SharePoint on CodePlex. http://cks.codeplex.com/
External Coolaboration Toolkit for SharePoint (ECTS) was recently released by The Solution Accelerators – Security and Compliance (SA-SC) team which allows SharePoint administrators to easily invite external users to connect and collaborate with corporate's internal users on existing or new Team/Project sites.
After doing a dry-run deployment for one of my customers I noticed some issues with the installting the solution on a medium farm with more than one web front end server and found quite few posts on the "SharePoint-Collaboration" forum regarding the similar issues and challenges.
I finally managed to successfully deploy the solution by following these steps:
<membership defaultProvider="ADAMUser"> <providers> <clear /> <add name="ADAMUser" type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ADAMConnectionString" attributeMapUsername="userPrincipalName" requiresQuestionAndAnswer="true" enablePasswordReset="true" attributeMapPasswordQuestion="eatmuPasswordQuestion" attributeMapPasswordAnswer="eatmuPasswordAnswer" attributeMapFailedPasswordAnswerCount="eatmuFPAC" attributeMapFailedPasswordAnswerTime="eatmuFPAT" attributeMapFailedPasswordAnswerLockoutTime="eatmuFPALT" /> </providers> </membership> ... If the above settings are missing in Central Administration, click the Application Management tab and then, under Application Security, click Authentication providers. Verify that you are configuring the proper Web application, and then click Extranet. On the Edit Authentication page click Save again(without modifying the settings). This will magically update the WebConfigurationChanges objects in Configuration database and eventually pushes all the custom settings to the web.config for both Internal and external web application.
Note. When installing ECTS on a single server this happens automatically as part of the ECTSBase feature activation at web application level.
Entwicklung Customizing Application.master Ajaxify MOSS - now featuring .Net 3.5 ( CodePlex ) WebDav
Hi,
I have successfully deployed a collaboration Sharepoint server and am successfully using ECTS for the external collaboration piece. It works great. My environment looks like this- Sharepoint, ADAM, ADAM sql2005 database are all on the same server. The admin site database and the web applicaton's database are on a different sql2000 db server.
Now, however, I need to deploy a new web application on the same server (and will configure it to have the content db once again on my separate sql2000 server) and am unclear how to do that. Do I just create the new app, new database, configure internal and external sites, zones, and authenticaton methods, and then activate the ECTS web application features? Or do I do all I just mentioned but then rerun the Sharepoint scripts against the new web app?
Any guidance is very appreciated- I REALLY don't want to have to rebuild this server if I mess it up.