Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SSIS and Import/Export (2005)
 problem in deploying SSIS package

Author  Topic 

Yalini2212
Starting Member

12 Posts

Posted - 2010-12-26 : 10:31:52
Hi,

I am executing SSIS package from the asp.net web application. after i deployed it into IIS, when i click the button to execute package, it is not executing the package but there is no error. It prints the line after the execution part. What would be the problem?


string pkgLocation = @"c:\test.dtsx";
Package pkg;
Application app;
DTSExecResult pkgResults;
Variables vars;
app = new Application();
pkg = app.LoadPackage(pkgLocation, null);
pkgResults = pkg.Execute(null, vars, null, null, null);
response.write("end");
   

- Advertisement -