.Net core with gRPC - data types support and how to debug the code

880 Views Asked by At

I am very new to gRPC and microservice architecture. We have .Net core web APIs written, and they talk to each other via http rest representation. However we are planning to have communication between internal microservice via http2/ gRPC framework.

We are considering .Net core 3.1 - gRPC template that is available in visual studio 2019. But I do not have answers to the below questions, any comment will be helpful, thanks in advance. We want answers for all these below questions before starting the development with gRPC

Considering we use the .Net core gRPC template for microservices communication :

  1. How to debug the code locally ? As in comparing it with rest API we can have swagger/ postman to test the rest endpoint, in this case how to do so ?
  2. Does it support Nuget packages ?
  3. Are there any data types that the protobuf or gRPC does not support ?
  4. gRPC gateway - can be written in c# or any .Net languages , if so how ? any existing template from VS 2019 ?
1

There are 1 best solutions below

3
On

Did you even bother looking at the gRPC page?

  1. How you test/debug your API/code really depends on your requirements.
  2. Yes. Grpc, Grpc.Tools and Google.Protobuf as pointed out here.
  3. Look at the protobuf spec. But gRPC could also be used with other data formats such as JSON if you choose to.
  4. With "gateway" you mean the gRPC server? Something like this?