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());
link|improve this question

1  
How do you host your app in production? – oleksii Nov 27 '11 at 21:21
Does your Process code work with another executable? – Austin Salonen Nov 27 '11 at 21:27
@oleksii It's run under IIS / Windows Server 2008 R2, encapsulated in an Application with its own application pool. To be clear - the issue reproduces when the code is still in the same folder. When I run it by pressing F5, it works. When I run it by accessing it via myexample.com/testapp, it never moves past the read() line. – Carl J. Nov 27 '11 at 21:28
Is your cmd program making assumptions about CurrentDirectory? – Henk Holterman Nov 27 '11 at 21:33
I would put the Process in a using statement also. – DaveShaw Nov 27 '11 at 21:38
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.