grpc-dart
grpc-dart copied to clipboard
The Dart language implementation of gRPC.
In dart - grpc-3.0.0 when: _socket = await SecureSocket.secure(_socket, // This is not really the host, but the authority to verify the TLC // connection against. // // We don't...
I am using an authentication interceptor that returns a `GrpcError` if the user is not authenticated: ```dart return GrpcError.unauthenticated('Authentication required'); ``` This works as expected, and returns the error properly,...
For e.g. in Go, you first dial out the call, and pass that to the gRPC service client. If the dial fails you know immediately that you were unable to...
Hey, I'd like to pass a URI with a path to the client, so that I can use a proxy in front of my application on the server side to...
Is there a reason for the `clientMetadata`, `headers`, and `trailers` to be nullable in https://github.com/grpc/grpc-dart/blob/master/lib/src/server/call.dart#L22 ? Before migrating to null safety, I have always assumed that they were set (and...
Could be nice to have Retry functionality for the gRPC calls. It could be call parameters to pass retry count and delay. Fore the stream respond - in case of...
I get a gRPC Error (14, XhrConnection connection-error) when I use Dart gRPC in the browser. Dart gRPC on Android performs properly, without an error. grpc: git: url: https://github.com/grpc/grpc-dart.git #...
When deploying the sample application to kubernetes, and doing the echo stream, it seems that all of the responses are buffered until the connection is closed. However, when running against...
Any interest is supporting validators ? https://github.com/envoyproxy/protoc-gen-validate go, Java, python are supported but they only support proto3, with proto2 support planned.
Since it's super annoying to debug network protocols without running them through [Charles](https://www.charlesproxy.com/). Should respect `http_proxy` environment variable (and friends).