IIS Express MVC远程调试SSL连接错误

时间:2016-11-01 15:08:58

标签: android asp.net-mvc ssl iis

我正在尝试在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网络应用时,它会出现以下错误

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错误?

1 个答案:

答案 0 :(得分:2)

您可以使用名为“Conveyor”的免费VS扩展程序启用与IIS Express的远程连接。

https://marketplace.visualstudio.com/items?itemName=vs-publisher-1448185.ConveyorbyKeyoti

这样您就不需要使用绑定配置(传送带也不会触及它们)。