I have a website (MVC3), which for developement is hosted in IIS Express. (I've run into a bug of Cassini Devserver and had to upgrade...) Now, I'm wondering, is it possible to let other machines on my local net (behind router) see the site as hosted on my machine? (e.g. If I write http://my.local.ip:port into a browser on the same LAN as I am will the page load?)

link|improve this question

1  
Why not try it and find out? – John Saunders Mar 8 '11 at 17:16
@John Saunders: Did. Not working. – TDaver Mar 8 '11 at 17:30
care to share the results? What does "not working" mean? – John Saunders Mar 8 '11 at 19:29
it meant the page didn't load (server not responding), so I'm guessing the IIS Express doesn't answer non-localhost request (like Cassini). But since IIS Express IS a full server it should be able to. – TDaver Mar 8 '11 at 19:58
feedback

2 Answers

up vote 12 down vote accepted

By default IIS Express serves only localhost requests. To serve external requests edit applicationhost.config file (located in %userprofile%\documents\iisexpress\config) and change localhost to '*' or your machine name. (remember for non-localhost binding you must be running as administrator or set URL acl as an administrator and then run iisexpress as non-administrator)

link|improve this answer
I've located my site in the config xml, and changed <binding protocol="http" bindingInformation="*:44886:localhost" /> to <binding protocol="http" bindingInformation="*:44886:*" />. Then added url acl in admin mode (netsh http add urlacl url=http://+:44886/ user=\Everyone). Now, when I press F5 in visual studio, I get "Unable to start IIS Express". – TDaver Mar 12 '11 at 10:00
3  
run this command "netsh http add urlacl url=http://*:44886/ user=Everyone" and try to start it again(press F5). This should work. Following link may also help learn.iis.net/page.aspx/1005/… – vikomall Mar 14 '11 at 16:32
1000 upvotes... great help... – Prince Ashitaka Jan 5 at 5:53
feedback

Read this blog post for step-by-step instructions on how to enable remote access in IIS Express: http://blogs.iis.net/vaidyg/archive/2010/07/29/serving-external-traffic-with-webmatrix-beta.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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