vote up 1 vote down star

I am running into an issue I had before; can't find my reference on how to solve it.

Here is the issue. We encrypt the connection strings section in the app.config for our client application using code below:

        config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
        If config.ConnectionStrings.SectionInformation.IsProtected = False Then
            config.ConnectionStrings.SectionInformation.ProtectSection(Nothing)

            ' We must save the changes to the configuration file.'
            config.Save(ConfigurationSaveMode.Modified, True)
        End If

The issue is we had a salesperson leave. The old laptop is going to a new salesperson and under the new user's login, when it tries to to do this we get an error. The error is:

Unhandled Exception: System.Configuration.ConfigurationErrorsException: 
An error occurred executing the configuration section handler for connectionStrings. ---> System.Configuration.ConfigurationErrorsException: Failed to encrypt the section 'connectionStrings' using provider 'RsaProtectedConfigurationProvider'. 
Error message from the provider: Object already exists.
---> System.Security.Cryptography.CryptographicException: Object already exists
flag

80% accept rate

4 Answers

vote up 1 vote down check

I found a more elegant solution that in my original answer to myself. I found if I just logged in as th euser who orignally installed the application and caused the config file connectionstrings to be encrypted and go to the .net framework directory in a commadn prompt and run

aspnet_regiis -pa "NetFrameworkConfigurationKey" "{domain}\{user}"

it gave the other user permission to access the RSA encryption key container and it then works for the other user(s).

Just wanted to add it here as I thought I had blogged this issue on our dev blog but found it here, so in case I need to look it up again it will be here. Will add link to our dev blog point at this thread as well.

link|flag
This also helps when getting that error from an ASP .NET application. aspnet_Regiis -pa "NetFrameworkConfigurationKey ASPNET Thanks – Jay Jul 8 at 14:52
vote up 0 vote down

@boojiboy

we had installed the app for new user, using the clickonce install. both users were in admin group on the pc.

from what I have found online it appears to be the fact the default RSA key is machine specific and when different users use it to protect thier version of the app.config it causes errors. I think I need to protect using some user specific key, now just need to find out how. :)

Thanks for replying!

Mike

link|flag
vote up 1 vote down

So I did get it working.

  1. removed old users account from laptop
  2. reset app.config to have section not protected
  3. removed key file from all users machine keys
  4. ran app and allowed it to protect the section

but all this did was get it working for this user.

NOW I need to know what I have to do to change the code to protect the section so that multiple users on a PC can use the application. Virtual PC here I come (well after vacation to WDW tomorrow through next wednesday)!

any advice to help pointing me in right direction, as I am not very experienced in this RSA encption type stuff.

Thanks Mike

link|flag
vote up 0 vote down

Sounds like a permissions issue. The (new) user in question has write permissions to the app.config file? Was the previous user a local admin or power user that could have masked this problem?

link|flag

Your Answer

Get an OpenID
or

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