It says that the password was not specified or not correct. Package load will attempt to continue without the encryption.
I am using the following code to instantiate the design time component of a flat file destination in an SSIS package. The package is a password protected with EncryptSensitiveWithPassword
protection level.
CManagedComponentWrapper destDesigneTime = flatFileDestinationComponent.Instantiate();
When the above line is executed I get
failed to decrypt an encrypted xml node because the password was not specified or not correct.
package load will attempt to continue without the encrypted information.
How can I solve this issue?