Custom web.config settings in SharePoint
Posted by CJ on March 19, 2008
I have come across two ways to modify the web.config with custom nodes when using SharePoint. Yes, I know SharePoint solutions (.wsp) allow you to update web.config for safe control entries and other areas but this model doesn’t allow for any modification you want…lets say a WCF service <system.serviceModel>.
Option 1
You can use the SPWebConfigModification class that is inside the Microsoft.SharePoint.Administration.dll. Its purpose is to write nodes and attributes into the web.config file. This is a great approach when you want to deploy your custom settings via a features/solutions deployment.
SPWebService service = SPWebService.ContentService; SPWebConfigModification myModification = new SPWebConfigModification(); myModification.Path = “configuration/SharePoint/SafeControls”; myModification.Name = “SafeControl[@Assembly='MyCustomAssembly'][@Namespace='MyCustomNamespace'][@TypeName='*'][@Safe='True']“; myModification.Sequence = 0; myModification.Owner = “User Name“; myModification.Type = SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode; myModification.Value = “<SafeControl Assembly=’MyCustomAssembly’ Namespace=’MyCustomNamespace’ TypeName=’*’ Safe=’True’ />”; service.WebConfigModifications.Add(myModification); /*Call Update and ApplyWebConfigModifications to save changes*/ service.Update(); service.ApplyWebConfigModifications();
So the above code would go in a FeatureReceiver event when activated and removed when deactivated.
Option 2
If you want to write custom nodes into a web.config when the web application is first created you could also do the following.
When a Web Application is first created WSS copies the web.config file from C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG to the root folder of the Web Application. But before this file is copied it checks the CONFIG directory for any xml file that has a name in the format webconfig.*.xml and merges the contents with the web.config.
So you would create a file called webconfig.myname.xml and save it to C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\CONFIG
However, this approach will not modify existing web applications.
webconfig.myname.xml contents:
<?xml version=”1.0″ encoding=”utf-8″ ?>
<actions>
<add path=”configuration/appSettings”>
<add key=”MyFilePath” value=”C:\temp\path\” />
</add>
<add path=”configuration”>
<connectionStrings />
</add>
<add path=”configuration/connectionStrings”>
<remove name=”MySqlServerConnection” />
<add name=”MySqlServerConnection” connectionString=”server=[server];database=
db];Integrated Security=SSIP;” providerName=”System.Data.SqlClient” />
</add>
</actions>
So this needs to be completed on each web front end server. So to eliminate the manual approach again you can and package this up into a solution so WSS manages the deployment across the farm.
Add the file to a solution. A file to be deployed to the CONFIG folder can be inserted by using the <RootFile> element:
manifest.xml example:
<Solution xmlns=”http://schemas.microsoft.com/sharepoint/” SolutionId=”GUIDHERE”>
<RootFiles>
<RootFile Location=”CONFIG\webconfig.myname.xml”/>
</RootFiles>
<!– rest of solution manifest here
<FeatureManifests>… and other elements
–>
</Solution>
rich said
You might want to read this blog for a differing opinion on Option 1. You can debate it’s validity.
http://www.cleverworkarounds.com/2008/04/04/guru-of-governance/
Randy Bouquet said
CJ,
Thank you for the ideas. I used option two in a SharePoint application and had it deployed via the WSP. The file was successfully placed into the 12/CONFIG folder, however, the changes did not appear in the web.config file. It was then I saw the “However, this approach will not modify existing web applications” sentence. I am hoping you might know of a way to do what I am trying to acheive. I would like to deploy changes to the web.config as part of the WSP so I can have changes appropriately pushed to all of the servers on the farm. Things like application settings, database connection strings and the like could be set without having to manually update the web.config file (which could be overwritten) and could be deployed without having to manually update each of the front end servers.
I tried the stsadm.exe -o copyappbincontent command to push my changes to the web.config and it worked. Unfortunately, it pushed the changes to all of the other SharePoint sites (MySite, SSP and Central Admin) which was an undesired affect. Also, even if that was acceptable the stsadm.exe -o copyappbincontent command would have to be run on every front end server.
Any help you can provide would be appreciated.
CJ said
Hi Randy
You can look at the following two articles to guide your solution
http://blog.thekid.me.uk/archive/2007/03/24/web-config-modification-manager-for-sharepoint.aspx
http://paulhorsfall.co.uk/archive/2007/03/29/How-To-Programmatically-Disable-Custom-Errors-and-Enable-Debugging-And.aspx
cheers