I have got a scenario :


There is a config file which the installer installs and configures the
values in the files based on property variables.



Now after installation the User might configure some settings in the config
file. And it gets encrypted with few new values in the complete section.



The issue im facing right now is during upgrade. The config file might
change (New settings included in the config file) but the installer has to
retain the old values in the config file and include in the new file.



Suppose my installed file looks like :

  <connectionStrings>

    <add name="test" connectionString="test" providerName="test" />

  </connectionStrings>



And after installation the user configurations changes the connectionstring
and it gets encrypted and it looks like this:



  <connectionStrings New_Variable="test">

    <EncryptedData>

      <CipherData>

        <CipherValue>test</CipherValue>

      </CipherData>

    </EncryptedData>

  </connectionStrings>



So I need to update the new web.config file which is modified during next
release version with these values.



Any help would be appreciated.



Regards,

MS
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to