2016-11-01 44 views
0

我想遠程調試Android Chrome瀏覽器上的MVC應用程序。我已經啓用了我的IIS快遞給我的本地網絡,並且還配置了我applicationhost.config文件有以下綁定IIS Express MVC遠程調試SSL連接錯誤

<bindings> 
<binding protocol="http" bindingInformation="*:62442:localhost" /> 
<binding protocol="http" bindingInformation="*:62442:xxx.xxx.x.xxx" />  
</bindings> 

我也創建在Windows防火牆端口數的新InBound規則。

當我嘗試在我的Android設備(Chrome)即可打開Web應用的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錯誤?

回答