Hello Amol,
It looks like a strange problem, you compute emulator could not work normally, as far as i know, Windows Azure emulator will use ports 12000-12002, would you like to check if these ports was already in use? If so, please try to modify DevFc.exe.config
file with other ports:
Resolution:
- Determine if any of the following ports are being used by a non-Windows service: 15095, 15096, 15097, 15098, 15099, or 15100.
- Navigate to the installation directory of the Compute Emulator. By default the Compute Emulator is installed at C:\Program Files\Windows Azure Emulator\emulator\devfabric.
- In the DevFc.exe.config file, locate the add port entry that contains the conflicting port value and modify the value to use a non-conflicting port. The DevFc.exe.config file entries that can be affected are:
- <add key="ManagementServicePort" value="15095" />
- <add key="RepositoryServicePort" value="15096" />
- <add key="AgentCallbackPort" value="15097" />
- <add key="AgentPort" value="15098" />
- <add key="PxeResponderPort" value="15100" />
- In the DfService.exe.config file, locate the dfservice element and modify the ManagementServicePort or RepositoryServicePort attribute to use a non-conflicting port.
- <dfservice ManagementServicePort="15095" RepositoryServicePort="15096" />
- Press F5 to restart the application or run the CSRun Command-Line Tool.
If it still not works, find this path
c:\users\<username>\AppData\Local\dftmp\DevFCLogs
to see if there's more details logs about this error.
You can also try to re-install Azure SDK or test the application in another machine and have a try.
BR,
Arwind
Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact
msdnmg@microsoft.com
Microsoft One Code Framework