Top "Grpc" questions

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

How to make call to gRPC server over HTTP/1.1 from cURL command or in internet browser

I have added below new code in protobuf file and compiled to get the generated grpc_pb files. service EchoService { …

java grpc grpc-java proto
How to convert Google proto timestamp to Java LocalDate?

We need to convert Google Proto buffer time stamp to a normal date. In that circumstance is there any way …

java date grpc grpc-java proto
gRPC in Java - Blocking/nonblocking stubs

I am attempting to create a java grpc client to communicate with a server in go. I am new to …

java grpc grpc-java
Can I send a custom Error message from server to client GRPC?

I have created a simple GRPC server and client . What i want to do is to create a custom error …

javascript node.js protocol-buffers grpc
Configuring Proton for SSL / TLS throwing openssl wrong version number and gRPC client error

I'm kinda at a loss here. Trying to set up proton with SSL / TLS access, but after creating the certificates …

ssl lotus-domino grpc domino-appdev-pack
REST vs gRPC: when should I choose one over the other?

I see more and more software organizations using gRPC in their service-oriented architectures, but people are also still using REST. …

rest kubernetes microservices docker-swarm grpc
Android How to add a custom header in grpc client?

I have to add a custom header in an android grpc client. I am unable to send it successfully. public …

android client metadata grpc grpc-java
gRPC: What is the recommended way to shut down an asynchronous server in C++?

I have a gRPC server that hosts two asynchronous services ("Master" and "Worker"), and I would like to implement graceful …

c++ asynchronous server grpc shutdown
does grpc service must have exactly one input parameter and one return value

let's say i have a proto file like this. can I define service like this rpc SayHello () returns (Response) {} //service …

grpc
Unable to install grpcio using pip install grpcio

I am getting error while installing grpcio using pip install grpcio on my windows machine.I read here - https://…

python-2.7 build grpc