grpc-dart icon indicating copy to clipboard operation
grpc-dart copied to clipboard

The Dart language implementation of gRPC.

Results 130 grpc-dart issues
Sort by recently updated
recently updated
newest added

Is it currently possible to use server reflection (https://github.com/grpc/grpc/blob/master/doc/command_line_tool.md) with grpc-dart?

type-enhancement
help wanted

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...

type-bug

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),...

type-enhancement
help wanted

https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md#special_status_message This was added in grpc/grpc#16129

type-testing

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...

type-enhancement

That use-case is not supported by grpc-web, and it's nice to get the error as early as possible.

type-enhancement

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...

type-bug

See: https://tools.ietf.org/html/rfc7540#section-8.1.2.3

type-enhancement

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...

type-bug

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...

type-bug