snippetcsharpCritical
How to enable external request in IIS Express?
Viewed 0 times
externalhowiisrequestexpressenable
Problem
How can I enable remote requests in IIS Express? Scott Guthrie wrote that is possible but he didn't say how.
Solution
There's a blog post up on the IIS team site now explaining how to enable remote connections on IIS Express. Here is the pertinent part of that post summarized:
On Vista and Win7, run the following command from an administrative prompt:
For XP, first install Windows XP Service Pack 2 Support Tools. Then run the following command from an administrative prompt:
On Vista and Win7, run the following command from an administrative prompt:
netsh http add urlacl url=http://vaidesg:8080/ user=everyoneFor XP, first install Windows XP Service Pack 2 Support Tools. Then run the following command from an administrative prompt:
httpcfg set urlacl /u http://vaidesg1:8080/ /a D:(A;;GX;;;WD)Context
Stack Overflow Q#3313616, score: 420
Revisions (0)
No revisions yet.