Top "Grpc" questions

A general RPC (Remote Procedure Call) framework over HTTP/2, initially developed at Google.

Import timestamp in proto file of protobuf for GRPC

I am trying to use gRPC and using the exchange message format as protobuf. I wanted to add timestamp field …

protocol-buffers grpc
protoc-gen-go: program not found or is not executable

I am trying to build a sample app with go grpc but I am unable to generate the code using "…

go protocol-buffers grpc proto protoc
GRPC web client with angular 6

I have worked with grpc .net client and a grpc server created with java, how can i implement grpc web …

angular typescript grpc grpc-web
protoc-gen-go-grpc: program not found or is not executable

go version: go version go1.14 linux/amd64 go.mod module [redacted] go 1.14 require ( github.com/golang/protobuf v1.4.0-rc.2 google.…

go protocol-buffers grpc protoc
How to enable server side SSL for gRPC?

New to gRPC and couldn't really find any example on how to enable SSL on the server side. I generated …

c# ssl-certificate grpc
golang protobuf remove omitempty tag from generated json tags

I am using google grpc with a json proxy. for some reason i need to remove the omitempty tags from …

go grpc protocol-buffers proto3
How to add global exception interceptor in gRPC server?

In gRPC , how to add a global exception interceptor that intercepts any RuntimeException and propagate meaningful information to the client ? …

java protocol-buffers grpc grpc-java
Google dialogflow PERMISSION_DENIED Exception

I am trying to access a Google DialogFlow from a Windows Java application. I have the environment variable, GOOGLE_APPLICATION_…

grpc dialogflow-es
Is "google/protobuf/struct.proto" the best way to send dynamic JSON over GRPC?

I have a written a simple GRPC server and a client to call the server (both in Go). Please tell …

json go protocol-buffers grpc protoc
Raising a server error to the client with grpc

Let's consider a simple service: service Something { rpc Do(Request) returns Response; } message Request { string field = 1; } message Response { string response = 1; } …

python error-handling grpc