tags:

views:

53

answers:

1

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.

A: 

I believe this stackoverflow link will help you: http://stackoverflow.com/questions/1194652/execute-ssis-from-asp-net-application

rfonn