Files
grpc/examples/cpp/reflection/README.md
AJ Heller cf6e5ed843 [example] Server reflection (#33162)
This is nearly identical to the helloworld example's greeter callback
server, but without the health check service enabled. Having a separate
example for reflection may help folks find this code.
2023-05-17 13:12:10 -07:00

19 lines
592 B
Markdown

gRPC Reflection Example
================
This example shows how reflection can be registered on a gRPC server.
### Build and run the example
To start the reflection server on its default port of 50051, run the following command from within the `examples/cpp/reflection` folder:
```
$ bazel run :reflection_server
```
There are multiple existing reflection clients you can use to inspect its services.
To use `gRPC CLI`, see https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md#grpc-cli.
To use `grpcurl`, see https://github.com/fullstorydev/grpcurl.