grpc-dart
grpc-dart copied to clipboard
The Dart language implementation of gRPC.
Is it currently possible to use server reflection (https://github.com/grpc/grpc/blob/master/doc/command_line_tool.md) with grpc-dart?
Run server from hello world example. Run client and kill it. Repeat many time Time to time, killing the client cause server crash. See trace bellow. Also the client is...
I have a Golang gRPC service that uses PreRPCCCredentials for both Unary and Stream cases.. on the server it's got interceptors for both ``` if usePerCallSecurity { opts = []grpc.ServerOption{grpc.Creds(creds),...
https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md#special_status_message This was added in grpc/grpc#16129
In some cases (mainly testing) I'd like to be able in the same VM to create a Client directly for a Service without having to use network. Note that with...
That use-case is not supported by grpc-web, and it's nice to get the error as early as possible.
With `grpc-1.0.3` I faced a crash with the following stack. This crash occurs during a load test. ``` Unhandled exception: NoSuchMethodError: The method 'remove' was called on null. Receiver: null...
See: https://tools.ietf.org/html/rfc7540#section-8.1.2.3
The generated code can lead to problems where when creating a parent message with a child submessage the parent is modifiable but fields in the child are not. This forces...
From the server.dart code it looks like that the dart interop server implements the "unimplementedCall" https://github.com/grpc/grpc-dart/blob/ae17e712e4f5431eb6664f0589899c77462e5475/interop/bin/server.dart#L117 This is actually not what's intended by the interop test spec. The idea is...