Click here to Skip to main content
15,902,939 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am facing one problem in Running SSIS package from asp.net.
After build and running the solution if I click on the execute button, the whole thing (activating SSIS packages from ASP.Net) works fine.
But, after hosting the web site in the IIS, then accessing the site via browse option and clicking on execute button results in void.
In another case I have deployed SSIS package in the file system and tried to access it from the hosted web site. It results in 'Failed 'Though it had worked after I deployed the SSIS pkg in SQL Server, but, I dont know how to access that deployed pkg in SQL server from asp.net.
If you have any answer, then please help...

the path which i tryed is UNC
ex:~\\Package\Package.dtsx

kiran.L
Posted
Updated 18-Feb-10 23:33pm
v2

1 solution

When you run your asp.net web application from Visual Studio, SSIS package will be activated using your account as the web site is running under your login credentials.

But when you deploy your web site to IIS, It will run under Network Service account in Windows 2003 and ASPNET account in Windows XP. Therefore you need to provide access to these accounts in SQL Server.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900