I've been reading on how to execute Win32 command-line programs from within the C# ASP.NET application, and for some reason, this code below never completes during execution, being stuck indefinitely on output = p.StandardOutput.ReadToEnd(); line.
The code works well when executed from a local debugging server (pressing F5 from Visual Studio), but when it's accessed through the browser via full URL (myexample.com/testapp), debugger never moved past the output=... line.
ProcessStartInfo info = new ProcessStartInfo(@"FetchIntranetPageSpecial.exe");
info.Arguments = "hostname";
info.UseShellExecute = false;
info.RedirectStandardOutput = true;
info.RedirectStandardError = true;
info.RedirectStandardInput = true;
info.CreateNoWindow = true;
Process p = System.Diagnostics.Process.Start(info);
p.Start();
// Capture the output
output = p.StandardOutput.ReadToEnd(); // debugger does not move past this line
p.Close();
The .exe is a straightforward http request app, does not access to local files or anything, outputs result to console.
I thought this could be a permissions issue at first, so for debugging purposes set FetchIntranetPageSpecial.exe permissions to "EVERYONE, EVERYTHING" - still works fine when accessed through localhost, but still hangs when accessed remotely.
Any pointers on what I could try next?
EDIT: I also read this page Program doesn’t terminate when using processes, but in that case, the debugger goes into indefinite "waiting" state on this line:
while (read.Peek() >= 0) // stuck on this line
Console.WriteLine(read.ReadLine());
Processcode work with another executable? – Austin Salonen Nov 27 '11 at 21:27