I'm attempting to test a website I have running in a local IISExpress instance with some other machines / devices on my local network. I am running Win7 Pro.

When I first attempt to browse to my machine from another machine on my local network segment, I get a 400 error: Hostname is invalid.

I understand that I need to grant remote access to the ACL with a command on the elevated command prompt like:

netsh http add urlacl url=http://mymachinename:50333/ user=everyone

Now I get a 503 service is unavailable error.

Windows Firewall is currently shut off, and I am able to browse my local IISExpress instance with the address http://localhost:50333

What is the final piece to this configuration puzzle?

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

It looks like you are missing a binding information entry in applicationhost.config file.

  1. Open applicationhost.config file located in your user profile (%userprofile%\Documents\IISExpress\config\applicationhost.config)

  2. Locate your WebSite entry and add following binding with your machine name.

         <binding protocol="http" bindingInformation=":50333:your-machine-name" />
    
  3. Restart IIS Express

link|improve this answer
That was the missing setting... thanks for your help! – Jeff Fritz Mar 28 '11 at 11:10
Hooray! After almost 2 hours trying to get it working between a Windows 7 virtual machine running under Parallels Desktop 6 and my Mac OS host, I finally got it working. I was missing this final piece in the puzzle. Awesome. Now I can test my ASP.NET MVC 3 site running in IIS Express in Mac OS too. – Leniel Macaferi Apr 23 '11 at 3:32
1  
Just to mention: this post provided a good amount of info related to the configuration I needed: blogs.iis.net/vaidyg/archive/2010/07/29/… – Leniel Macaferi Apr 23 '11 at 3:37
Thank you so much! My goodness, i was going nuts trying to find that. – Jugglingnutcase Dec 21 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.