Hi,
I am also facing the same problem.
I am executing package through code using Microsoft.SqlServer.Dts.Runtime assembly.
The method for executing the package is
Application app = new Application();
Package package;
package = app.LoadPackage(packagepath, null);
package.Execute();
it...