Skip to content

Instantly share code, notes, and snippets.

@4E71
Created July 25, 2012 23:51
Show Gist options
  • Save 4E71/3179410 to your computer and use it in GitHub Desktop.
Save 4E71/3179410 to your computer and use it in GitHub Desktop.
visual studio: developer notes
Issue:
Try to load solution with a service project and get the following message:
"Creation of the virtual directory http://localhost:8888/service failed with the error:
Could not find the server 'http://localhost:8888' on the local machine.
Creating a virtual directory is only supported on the local IIS server."
Solution:
Edit the project file, look for <iisurl> node, remove the port number from the URL.
BEFORE:
<IISUrl>http://localhost:8888/service</IISUrl>
AFTER:
<IISUrl>http://localhost/service</IISUrl>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment