I have search the web and cannot find an answer to this problem, because ones I find are for different situation.
I have created an ASP.Net/C# application that executes an SSIS package. I am using package.execute() to call the package. The package is located on Sql Server with SSIS install and the web application is located on server that does not have SSIS installed. I do have reference to Microsoft.SqlServer.Dts.Rutime in the C# and program complies without error. Get the following error when calling the package.
Could not load file or assembly 'Microsoft.SqlServer.DTSRuntimeWrap, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
On server with SSIS I can find the ddl in GAC_32 as well as the server the ASP.net is located and which both servers are 32 bit. When package was created it was created on local machine which also a 32 bit.
Any help would be greatly appreciated