i try to create a gRPC service in .NET 6.
I successfully create a simple service that expose a simple enpoint that return a string.
With the gRPC service , I have the classic web api expose on http and https (http://localhost:51653; https://localhost:71653)
I try with Postman the gRPC call on https port (71563) and the response is OK but if i try to call the gRPC ervice over insicure port (51653) i have this error in Postman:
Received RST_STREAM with code 2 triggered by internal client error: Protocol error
Now I want to call the gRPC endpoint without the TLS.
Is it possible?
thanks