When I run my web application from Visual Studio I get the following message:
Unable to connect to the configured development web server
It then refuses to run.
How do I resove this issue?
When I run my web application from Visual Studio I get the following message:
Unable to connect to the configured development web server
It then refuses to run.
How do I resove this issue?
Please try after restarting your machine.
Please follow these six steps:
Select the “Tools->External Tools” menu option in VS or Visual Web Developer. This will allow you to configure and add new menu items to your Tools menu.
Click the “Add” button to add a new external tool menu item. Name it “WebServer on Port 8010” (or anything else you want).
For the “Command” textbox setting enter this value: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\WebD ev.WebServer.EXE (note: this points to the web-server that VS usually automatically runs).
For the “Arguments” textbox setting enter this value: /port:8010 /path:$(ProjectDir) (or any port you like)
Select the “Use Output Window” checkbox (this will prevent the command-shell window from popping up.
Once you hit apply and ok you will now have a new menu item in your “Tools” menu called “WebServer on Port 8010”. You can now select any web project in your solution and then choose this menu option to launch a web-server that has a root site on port 8010 (or whatever other port you want) for the project.
You can then connect to this site in a browser by simply saying http://localhost:8010/. All root based references will work fine.
Obviously I don't know if this is the problem you had but definitely it is something similar, essentially the problem should be that the same port used by your Development Server is not available because it is already used by another web server.