
Can someone explain to me what's the proper usage of gRPC ...
Oct 8, 2020 · Like for example throwing an exception to stop execution. Or it is expected tht gRPC is going to terminate the execution.. (something like throwing an exception from gRPC) …
java - gRPC: How to configure SSL in client? - Stack Overflow
Dec 4, 2017 · Since grpc-java 1.37.0 it is possible for most users to configure TLS without using transport-specific APIs. This leverages the ChannelCredentials concept introduced in 1.34.0. …
java - How to handle (catch) io.grpc.StatusRuntimeException ...
Mar 5, 2024 · Unlike with blocking gRPC calls, which the client application can catch exceptions thrown from lower levels using a try-and-catch in the above manner, I cannot do the same for …
multithreading - Can gRPC Java client send multiple requests in ...
Sep 16, 2021 · Can gRPC Java client send multiple requests in parallel over a long lived gRPC stream and how to manage N streams Asked 4 years, 1 month ago Modified 4 years ago …
protoc not generating service stub files - Stack Overflow
Jun 24, 2015 · Hi Eric, i'm trying to make this work, i've downloaded protoc-gen-grpc-java.jar from maven, but no matter how i feed it to that argument it will still tell me that "file not found or is …
Newest 'grpc-java' Questions - Stack Overflow
The version of grpc-java is 1.65.1, and I'm using grpc-netty-shaded in Nacos, which is an experimental version supporting Spring Boot 3.3.1. While using native:compile, the project …
Intercepting/Logging requests and Responses in GRPC
Nov 7, 2017 · Is there a way to enable verbos server side and client side logging in GRPC to see what requests and responses are going in and out & what might be failing? I'm using the …
gRPC-java - Compilation of a .proto file - Stack Overflow
Jul 31, 2017 · You should work through one or both of the Java grpc tutorials at grpc.io. In general you'd want to use the Stub classes generated from the .proto file to call the server.
Communication between C# and Java via gRPC - Stack Overflow
Dec 13, 2024 · Using gRPC in both C# and Java should be just as easy as using them individually. All you need to do is use the same .proto file to generate code for each. The …
How to get the request headers from a grpc request in java?
I'm building a Java grpc server and I'm having a hard time getting the request headers. The proto files are compiled using protobuf-maven-plugin, and based on the generated stubs, I can't …