vote up 0 vote down star

We have a SharePoint application where we want the user to be able to modify the web.config by activating a feature. The application is extended, so we have an AD based web application and another that uses Forms Based authentication (FBA), with the FBA application being the "main" user application.

We use the SPWebConfigModification class (http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administration.spwebconfigmodification.aspx) to write to the web.config for settings we need for the activated feature.

This works great on the AD based side of things. However, when we try and run this on the FBA based web app, we get an error because the site collection administrator for the FBA site, does not have any access to modify the web.config on the server. Given that they are a FBA user, we can not give them rights on the server either.

Has anyone run into this? Does anyone have any work arounds. I assume I could try and have the application to update the web.conifg run via the command line, but I would really like it be done by the user when they activate the feature. I could also try and loosen security rights on the web.config, but that is a bad path to start down.

Thanks! John

flag
Why are you modifying the web.config file at runtime? If all you want to do is set key value pair (i.e. appSettings) then I suggest you investigate property bag settings in SharePoint. Modyfing the web.config file is bad for 2 reasons 1) It will cause the IIS Application pool to reset (thus causing a tiny (or large depending on the size of you site collections) outage. 2) Web.config changes are applied through a timer job (so the context of user making the change is irrlevent). – JD May 16 at 13:54

1 Answer

vote up 0 vote down

An alternative would be to write a component which does it. This could be trigged by activating a feature, or updating a webpart.

This would mean you don't need to loosen security, or do it via the command line.

link|flag
Wouldn't the component run in the context of the user still when I get a reference to SPWeb? I am not sure if there is a way to run with elevated privilieges for the file access to the web.config – jptacek May 15 at 15:15
Something like this: boris.gomiunik.net/2009/04/… Although this might work directly. – Bravax May 15 at 15:25
I mean using SPSecurity.RunWithElevatedPrivileges might work in your current code. – Bravax May 15 at 15:26
I will have to give that a try. Thanks – jptacek Jun 25 at 16:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.