I am trying to call an SSIS package through C # code. The package worked before I included the package password, but now I am trying to provide a password. I get an error that the password is incorrect or not specified.
Package package = app.LoadPackage("mypackage.dtsx, null); package.PackagePassword = "mypass"; DTSExecResult result = package.Execute();
Can someone please indicate where I am going wrong?
source share