python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Service compiling successfully, but message structs not generating - gRPC/Go
I am using gRPC/protobufs as the protocol to communicate between my client and server, both written in go. I'm able to run the command show below to generate the cards.pb.go (server) and cards_grpc.pb...
Sal
Votes: 0
Answers: 1
getting Failed to open browser: in GRPC with go tool setup
I did the go tool set up and try to run sample code it showed Failed to open browser: exec: "cmd": executable file not found in %PATH%. anyone can help
verified the environment path variabl...
revathi ganeshan
Votes: 0
Answers: 0
Best practice for making grpc calls from AWS Lambda
I'm using an AWS Lambda function to do some processing which in turns call a grpc service for some data. What's the best practice for doing such a thing considering it's preferred to re-use grpc conne...
Aniket Srivastava
Votes: 0
Answers: 0
gRPC service definitions: containerize .proto compilation?
Let's say we have a services.proto with our gRPC service definitions, for example:
service Foo {
rpc Bar (BarRequest) returns (BarReply) {}
}
message BarRequest {
string test = 1;
}
message BarR...
Max
Votes: 0
Answers: 1