Re: [grpc-io] Re: Finding list of available grpc methods in an api

2017-04-13 Thread Josh Humphries
If you are using Go, I've written a library that provides a better client API than just the streaming method on the generated service stub: github.com/jhump/protoreflect/grpcreflect (It also speaks in terms of *desc.Descriptor types

[grpc-io] Re: Finding list of available grpc methods in an api

2017-04-13 Thread 'Carl Mastrangelo' via grpc.io
Yes, if the server has Server Reflection turned on. It is currently off be default. It requires that the API use protobuf. You can send an RPC to the /grpc.reflection.v1alpha.ServerReflection/ServerReflectionInfo method. It is defined in reflection.proto in each of the repositories. On