【发布时间】:2017-03-14 18:11:26
【问题描述】:
我正在尝试在 Android Chrome 浏览器上远程调试 MVC 应用程序。我已将我的 IIS express 启用到我的本地网络,并将我的 applicationhost.config 文件配置为具有以下绑定
<bindings>
<binding protocol="http" bindingInformation="*:62442:localhost" />
<binding protocol="http" bindingInformation="*:62442:xxx.xxx.x.xxx" />
</bindings>
我还在 Windows 防火墙中使用端口号创建了一个新的InBound 规则。
当我尝试在我的 android 设备 (Chrome) 中打开 mvc Web 应用程序时,出现以下错误
SSL Connection Error
Unable to make a secure connection to the server. This may be a problem with the server or it may be requiring a client authentication certificate that you don't have
我不确定如何摆脱 SSL 错误?
【问题讨论】:
标签: android asp.net-mvc ssl iis