Reputation: 3041
I am developing a WCF application and it is working fine in hosting environment. Now I am facing an issue after applying latest windows updates. Azure computer emulator is not starting, it is getting stuck at starting roles. So it is not possible to update the version of the application which is hosted as local debugging is not working because of the emulator issue.My windows version is Windows 8.1. Please see the screenshot of the emulator and see at which point it is stuck:
I tried the following things:
Edited "AzureStorageEmulator.exe.config" file in "C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator" and changed the service urls
Previously the ports were 10000, 10001 and 10002 respectively.
Tried to repair the Azure SDK. Currently I am using Azure SDK version 2.7.1 and currently it is not possible to update the version
The issue happened after applying the following windows security updates:
After doing all these things, it is not working. Please suggest any solution.
Thanks
Upvotes: 4
Views: 2769
Reputation: 2591
Had the same problem. I commented out the Startup Task in the csdef file, because those tasks were not necessary for debugging. It solved the problem.
Upvotes: 4
Reputation: 31
One of the reasons is, this hang occurs when using the “Use IIS Web Server” option under “Local Development Server” settings in the Windows Azure project’s properties-->Web tab. The hang does not occur when you use the “Use IIS Express” setting which is the default.
This resolved my issue.
You can give it a try.
Upvotes: 0
Reputation: 83
Try commenting out the following line in your web.config
<access sslFlags="Ssl, SslNegotiateCert" />
Upvotes: 0
Reputation: 1
Had the same problem.
Check on the development properties if your emulator starts if you run your app. If the value is false change it to true.
That's how i solved it on mine.
Upvotes: 0