How can I enable remote requests in IIS Express? Scott Guthrie wrote that is possible but he didn\'t say how.
There are three changes you might need to make.
.config
file. Typically:
$(solutionDir)\.vs\config\applicationhost.config
%userprofile%\My Documents\IISExpress\config\applicationhost.config
Find your site's binding element, and add
netsh http add urlacl url=http://*:8080/ user=everyone
Where everyone
is a windows group. Use double quotes for groups with spaces like "Tout le monde".
Allow IIS Express through Windows firewall.
Start / Windows Firewall with Advanced Security / Inbound Rules / New Rule...
Program
%ProgramFiles%\IIS Express\iisexpress.exe
OR Port 8080 TCP
Now when you start iisexpress.exe
you should see a message such as
Successfully registered URL "http://*:8080/" for site "hello world" application "/"