Created
July 25, 2012 23:51
-
-
Save 4E71/3179410 to your computer and use it in GitHub Desktop.
visual studio: developer notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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