Link to home
Start Free TrialLog in
Avatar of Rouchie
RouchieFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Error when encrypting web.config database connection string

The code below is supposed to encrypt the database connection string in web.config, however, when run it throws an error.  Can anyone shed any light on why such an error would occur??

Dim path as string = "/netdump"
Dim config as configuration = WebConfigurationManager.OpenWebConfiguration(path)
Dim appSettings as configurationSection = config.getSection("connectionStrings")
If order then
      appSettings.sectionInformation.protectSection("DataProtectionConfigurationProvider")
Else
      appSettings.sectionInformation.UnprotectSection()
End If
config.Save()

- Error ----------------------------------------
Unable to save config to file 'c:\inetpub\wwwroot\netdump\web.config'.
Line 22:  config.Save()
Avatar of Rejojohny
Rejojohny
Flag of United States of America image

where r u running this code from .. the same machine where the web server resides? is the file set as "read only" ...
Avatar of Rouchie

ASKER

The file isn't set as read only and it is on the same machine as the web server.  I've managed to work around the problem by setting the ASP.NET user account on the machine to have MODIFY access privileges to the file directly.  For some reason though, the FULL CONTROL box is ticked and also greyed out.  Not sure if this is an advisable way to proceed though from a security perspective.
ASKER CERTIFIED SOLUTION
Avatar of Rejojohny
Rejojohny
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rouchie

ASKER

I guess not.  So if I encrypt locally on my development machine, and then copy web.config across to the server, the server will be able to read it okay?
i assume it should work .. unless the encrypt logic uses some machine specific details .. u could give it a try ... haven't tried it myself ..

Rejo