How to enable external request in IIS Express?

前端 未结 26 1826
借酒劲吻你
借酒劲吻你 2020-11-22 01:55

How can I enable remote requests in IIS Express? Scott Guthrie wrote that is possible but he didn\'t say how.

26条回答
  •  忘掉有多难
    2020-11-22 02:45

    I have some problems using IIS Express in Win 8.1 and external request.

    I follow this steps to debug the external request:

    1. Install IIS
    2. Configure Visual Studio to use local IIS (Page properties in your Web Project)
    3. Create a exclusive AppPool in IIS to work with my application
    4. In my Project I'm using Oracle Client and must be 32bits (64 bits don't work with Visual Studio) then I need allow 32 bit in Application Pool
    5. Configure the Windows firewall to allow request in port 80 (inbound rules)

    It's working!

提交回复
热议问题