i have the following configuration scenario for a WCF Service:
- I externalized my appSettings section from web.config to a seperate File
it is linke to web.config via
<appSettings file="generalAppSettings.config"/>The external file looks like this
<?xml version="1.0" encoding="utf-8" ?> <appSettings> <add key="GP_DEFAULT_WEB_APP_ROOT" value="C:\inetpub\wwwroot\App\"/> <add key="USE_CONFIG_DB" value="true"/> </appSettings>
I'm looking for some way to edit this externalized file via IIS 7.5 Management Console, as I'm not allowed to edit the file via Editor (seems like IIS process locks the file). It would be possible to edit the values if they would reside in the web.config itself, but as I said my scenario looks a little different.