I am trying to execute a SSIS package from a ASP.NET Application , here is the code that I am trying to use.
//DTS Runtime Application
Application app = new Application();
//DTS Package
Package package = app.LoadPackage(packagePath, null);
//Execute and Get the result
DTSExecResult result = package.Execute();
No matter what , I get result back as Failure. I sought of know that this is a permission issue. But I am not sure what permissions are needed.
Kindly help.