dotnet core 3.1 gRPC win7 NotSupportedException: HTTP/2 over TLS is not supported on Windows 7 due

启动时报了2个错:

       1、  AggregateException: One or more errors occurred. (HTTP/2 over TLS is not supported on Windows 7 due to missing ALPN support.) (HTTP/2 over TLS is not supported on Windows 7 due to missing ALPN support.)

       2、NotSupportedException: HTTP/2 over TLS is not supported on Windows 7 due to missing ALPN support.

我的解决办法:

        打开 appsetting.json 文件 ,这部分          

"Kestrel": {
    "EndpointDefaults": {
      "Protocols": "Http2"
    }
  }

   客户端可以全部删除,或者删除 “EndpointDefaults”节点内容。

  服务端可以修改,将“Endpoint”改为 “EndpointDefults”:例如

"Kestrel": {
    "Endpoints": {
      "Http": {
        "Url": "http://+:5000"
      },
      "Https": {
        "Url": "https://+:5001"
      },
      "Http2": {
        "Url": "http://+:5002",
        "Protocols": "Http2"
      }
    }

其中,5000和5001 都是服务端的启动端口( launchSetting.json文件中 Profiles:ApplictionUrl 内容)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值