I am developing a project in VS2010 and am able to view my site locally via IIS Express. I would like to enable external access over the network.

All my research has sent me to this blog entry: http://blogs.iis.net/vaidyg/archive/2010/07/29/serving-external-traffic-with-webmatrix-beta.aspx, which is helpful but does not seem to show how to configure bindings for a project started in visual studio (I cannot find the screen in the screenshots, and I have edited binding info in applicationhost.config, but it does not seem to be reflected when I run the site from visual studio).

link|improve this question

2  
please read Scott Hanselman blog post hanselman.com/blog/… – balexandre May 15 '11 at 12:52
feedback

1 Answer

up vote 24 down vote accepted
  1. After editing applicationhost.config file, your site bindings should like below;

        <binding protocol="http" bindingInformation="*:8080:localhost" />
        <binding protocol="http" bindingInformation="*:8080:your-machine-name" />
    

  2. You should run VS as administrator because you are using non-localhost binding. If you don't want to run as administrator you can add URL ACLs

  3. If running VS as administrator doesn't solve your problem, then run IIS Express from command line and see if there are any binding registration failure messages. To start from command line run below command

    iisexpress.exe /site:"your-site-name"

link|improve this answer
2  
@user578913 So I finally found the correct applicationhost.config file by opening the running IIS Express taskbar thing and clicking on it then on the link to the config file. I set the port to 1063 on the second line, as that is what the first line had been set to. Ran your command line, and everything looked fine. When I go to machine-name or machine-name:1063 from another machine on the network, I still get nothing. – snumpy Mar 28 '11 at 14:06
2  
ok, since Visual Studio assigns a port (other than 8080), Windows Firewall was blocking it. After shutting off Windows Firewall (I could arguably just open the port, but I'm on a secure network) and using my machine's IP rather than the machine name, it worked. Thanks. I'd vote up, but don't have the rep yet =( – snumpy Mar 28 '11 at 14:14
feedback

Your Answer

 
or
required, but never shown

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