I've implemented a simple gRPC service in net5 similar to the GreeterService in the project template.
The service works fine when using IIS LocalHost but the client throws this exception when calling the remote server:
Grpc.Core.RpcException HResult=0x80131500 Message=Status(StatusCode="Internal", Detail="Request protocol 'HTTP/1.1' is not supported.")
I thought Grpc used HTTP/2 by default. What am I doing wrong ?