Top "Grpc-java" questions

Java version of general RPC (Remote Procedure Call) framework over HTTP/2.

java.lang.NoSuchMethodError: com.google.common.base.Preconditions.checkArgument

I am trying to run this grpc-Java example on my local. Corresponding proto file for the same is here. When …

java maven grpc-java
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
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
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 Load Balancing

I have read the Load Balancing page at https://github.com/grpc/grpc/blob/master/doc/load-balancing.md to start …

kubernetes google-kubernetes-engine grpc grpc-java
Grpc.Core.RpcException method is unimplemented with C# client and Java Server

I am having trouble finding the source of this error. I implemented a simple service using protobuf: syntax = "proto3"; package …

java c# protocol-buffers grpc grpc-java
Connection Error io.netty.handler.codec.http2.Http2Exception: HTTP/2 client preface string missing or corrupt. Hex dump for received bytes:

Working on Grpc Bidirectional Streaming, when i try to run grpc, getting below error Connection Error io.netty.handler.codec.…

grpc grpc-java
Intercepting/Logging requests and Responses in GRPC

I'm developing a chat app using GRPC in which the server receives information from the client and sends it back …

java android server grpc grpc-java