execution of another file in asp.net problem
hi,
I have a ASP dot net application file which executes another exe which is written in 'C' language.
code is
------------------------------------------------------------------------------------------------------------------
Process proc = new Process();
proc.StartInfo.FileName = path;
proc.StartInfo.Arguments =" "+fileName;
proc.Start();
-----------------------------------------------------------------------------------------------------------------
this c execute and read a flash file and write size etc of flash into a text file.
on my development server it is working fine.
but when i deployed it on windows 2003 server. now that text file is created but nothing is written in that file
i.e. 0 byte file. i thought it is a security related error so i set impersonation true using a account which has full rights
but problem is same.
i am unable to find the solution
Raj
|