且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android模拟器无法连接到IIS部署的站点

更新时间:2023-10-20 22:04:16

在IIS Express applicationhost.config文件中添加系统的IP地址绑定部分。

add the IP address of your system within the IIS Express applicationhost.config file bindings sections.

<bindings>
<binding protocol="http" bindingInformation="*:40000:localhost" />
<binding protocol="http" bindingInformation="*:40000:192.168.5.118" />
</bindings>

替换为您自己的地址和港口。

Replace with your own address and port.