I searched every topic and it seems that all the problems have been resolved already, and I tried every possible solution that they provided, or I'm still missing something.
-FireWall is already off.
Ok, so I'm trying to access my IIS server application, which is currently running VS 2013. Update 2.
when I try to access http: // localhost: 29790 / <- this to http://192.168.1.3:29790 , which is my current IP address on my local computer. This gives me error 503.
I was looking for a solution and gave me a ton.
file applicationhost.config
<site name="SMApplication(4)" id="10"> <application path="/" applicationPool="Clr4IntegratedAppPool"> <virtualDirectory path="/" physicalPath="C:\Users\DanZe3\Documents\Visual Studio 2013\Projects\SMApplication\SMApplication" /> </application> <bindings> <binding protocol="http" bindingInformation="*:29790:localhost" /> </bindings> </site>
I have tried this.
"asterisk: 29790: asterisk" <- it does not display an asterisk due to a text editor.
"*: 29790:"
": 29790:"
by snap bindings. But it still does not work. I also restart the PC or VS. But the problem is that when you try Re open VS. VS rewrite applicationhost.config file and add another binding.
As you can see on my site name = "SMApplication (4) <- it already has 4. This is automatic when I open the file and then the bindings will again be" *: 29790: localhost ".
Somehow editing these bindings. VS Studio will create another application binding. with another sitename = "SMApplication (5).
I tried to remove localhost on "*: 29790: localhost", but when I started the application that it gave me.
Unable to start IIS Express web server. The specified start URL is invalid. http: // localhost: 29270 /
Aizen
source share