Lines Matching +full:ls +full:- +full:remote
3 gRPC Server Reflection provides information about publicly-accessible gRPC
8 proto-based services.
12 gRPC-Java Server Reflection is implemented by
13 `io.grpc.protobuf.services.ProtoReflectionService` in the `grpc-services`
22 --- a/examples/build.gradle
24 @@ -27,6 +27,7 @@
26 compile "io.grpc:grpc-netty-shaded:${grpcVersion}"
27 compile "io.grpc:grpc-protobuf:${grpcVersion}"
28 + compile "io.grpc:grpc-services:${grpcVersion}"
29 compile "io.grpc:grpc-stub:${grpcVersion}"
32 --- a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java
34 @@ -33,6 +33,7 @@ package io.grpc.examples.helloworld;
42 @@ -50,6 +51,7 @@ public class HelloWorldServer {
64 First, build and start the `hello-world-server`:
69 $ build/install/examples/bin/hello-world-server
76 $ cd <grpc-cpp-directory>/bins/opt
81 `grpc_cli ls` command lists services and methods exposed at a given port:
83 - List all the services exposed at a given port
86 $ ./grpc_cli ls localhost:50051
95 - List one service with details
97 `grpc_cli ls` command inspects a service given its full name (in the format of
99 when `-l` flag is set. This flag can be used to get more details about a
103 $ ./grpc_cli ls localhost:50051 helloworld.Greeter -l
118 - List one method with details
120 `grpc_cli ls` command also inspects a method given its full name (in the
124 $ ./grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l
137 - Get information about the request type
150 ### Call a remote method
154 - Call a unary method