I have some unit tests that use Azure Storage. When running these locally, I want them to use the Azure Storage emulator which is part of the Azure SDK v1.5. If the emulator isn't running, I want it to be started.

To start the emulator from the command line, I can use this:

"C:\Program Files\Windows Azure SDK\v1.5\bin\csrun" /devstore

This works fine.

When I try to start it using this C# code, it crashes:

using System.IO;
using System.Diagnostics;
...
ProcessStartInfo processToStart = new ProcessStartInfo() 
{   
    FileName = Path.Combine(SDKDirectory, "csrun"),
    Arguments = "/devstore"
};
Process.Start(processToStart);

I've tried fiddling with a number of ProcessStartInfo settings, but nothing seems to work. Is anybody else having this problem?

I've checked the Application Event Log and found the following two entries:

Event ID: 1023 .NET Runtime version 2.0.50727.5446 - Fatal Execution Engine Error (000007FEF46B40D2) (80131506)

Event ID: 1000 Faulting application name: DSService.exe, version: 6.0.6002.18312, time stamp: 0x4e5d8cf3 Faulting module name: mscorwks.dll, version: 2.0.50727.5446, time stamp: 0x4d8cdb54 Exception code: 0xc0000005 Fault offset: 0x00000000001de8d4 Faulting process id: 0x%9 Faulting application start time: 0x%10 Faulting application path: %11 Faulting module path: %12 Report Id: %13

link|improve this question

75% accept rate
feedback

4 Answers

This program worked fine for me. Give it a try, and if it works for you too, work backwards from there. (What about your app is different from this?)

using System.Diagnostics;
public class Program
{
public static void Main() {
        Process.Start(@"c:\program files\windows azure sdk\v1.5\bin\csrun", "/devstore").WaitForExit();
    }
}
link|improve this answer
Thanks for confirming it works on your machine, but your code crashes in the same way on my machine. – Doug Clutter Sep 26 '11 at 0:07
So if you open up a command prompt and run that code, csrun crashes, but if you run "csrun /devstore" from the same prompt, it works? That's really strange. What OS? Anything special about the user you're running as? – smarx Sep 26 '11 at 0:56
does the username have a space in it? This could be related to the problem I have been having here... stackoverflow.com/questions/7480910/… – David Steele Sep 26 '11 at 10:00
@smarx - As indicated in the OP, I am running this code during the Unit Test setup. As a test, I ran your program as a stand-alone console app and it works just fine. Obviously, something is happening when I run the unit tests, but I haven't a clue what it might be nor why it would cause the crash. – Doug Clutter Sep 29 '11 at 14:54
@DavidSteele - Thanks for the suggestion David. No space in the username. – Doug Clutter Sep 29 '11 at 14:55
feedback

maybe caused by file not found?

try this FileName = Path.Combine(SDKDirectory, "csrun.exe")

link|improve this answer
Thanks but that's not the case. The Storage Emulator actually starts and then immediately crashes. I edited the post to include information from the Application Event Log. Also, my first attempt did include the ".exe" as you suggested, but it behaved the same way. – Doug Clutter Sep 25 '11 at 19:28
feedback
up vote 0 down vote accepted

I uninstalled all of the Windows Azure bits:

  • WA SDK v1.5.20830.1814
  • WA Tools for Visual Studio: v1.5.40909.1602
  • WA AppFabric: v1.5.37
  • WA AppFabric: v2.0.224

Then, I downloaded and installed everything using the unified installer. Everything came back except the AppFabric v2. All the version numbers are the same. Reran my tests and still having a problem.

And then...(this is weird)...it would work every now and then. Rebooted the machine and now it works. Have shutdown and rebooted a number of times now...and it just works. (sigh)

Thanks to everyone who provided feedback and/or ideas!

The final code is:

    static void StartAzureStorageEmulator()
    {
        ProcessStartInfo processStartInfo = new ProcessStartInfo()
        {
            FileName = Path.Combine(SDKDirectory, "csrun.exe"),
            Arguments = "/devstore",
        };
        using (Process process = Process.Start(processStartInfo))
        {
            process.WaitForExit();
        }
    }
link|improve this answer
feedback

FYI - The 1.6 default location is C:\Program Files\Windows Azure Emulator\emulator as stated on the MSDN docs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.