Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I just realized that the file is just readonly as it is found under inetpub>wwwroot. Just setting the webapp folder to writeable solved the primary problem. Anyways, isn't is somehow possible to do the editing via the console? – hecko84 Nov 23 '12 at 9:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.