IISExpress based app doesn't get IP based requests

I seemingly applied every recommendation available on net. Yet without results. My environment:

  • Windows 10 Enterprise @ VM (possibly WMware)
  • VS Prof 2017 ver 15.5.2
  • .NET 4.5 Web application
  • IISExpress with ProjectURL http://localhost:8080 (Created virtual directory)
  • Following recommendations I did following:

  • Run as Admin: netsh http add urlacl url=http://:8080/ user=everyone
  • Added element binding protocol="http" bindingInformation=":8080:" / in C:UsersmyselfDocumentsIISExpressconfigapplicationhost.config
  • In Windows Firewall add Inbound Rules: %ProgramFiles%IIS Expressiisexpress.exe
  • What I get:

  • When debugging IISExress-based application from Visual I get to breakpoints by getting http://localhost:8080/myresource from browser but http://myip:8080/myresource (from the same machine!!!) doesn't get me to breakpoint
  • Inspecting C:UsersmyselfDocumentsIISExpressTraceLogFilesWebSite1 reveals no trace to the latest request.
  • Running from IISExpress from Admin/Cmd as "c:Program FilesIIS Expressiisexpress.exe" /path:"C:myapp.Web" /port:8080 /trace:e is also unsuccessful. BTW, it starts with suspicious "Successfully registered URL "http://localhost:8080/"". Where is my ip??!!!
  • 链接地址: http://www.djcxy.com/p/68734.html

    上一篇: 网:: ERR

    下一篇: 基于IISExpress的应用程序不会获取基于IP的请求