| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| BUILD | D | 04-Jul-2025 | 947 | 29 | 26 | |
| README.md | D | 04-Jul-2025 | 592 | 19 | 11 | |
| reflection_server.cc | D | 04-Jul-2025 | 2.6 KiB | 75 | 43 |
README.md
1gRPC Reflection Example 2================ 3 4This example shows how reflection can be registered on a gRPC server. 5 6### Build and run the example 7 8To start the reflection server on its default port of 50051, run the following command from within the `examples/cpp/reflection` folder: 9 10``` 11$ bazel run :reflection_server 12``` 13 14There are multiple existing reflection clients you can use to inspect its services. 15 16To use `gRPC CLI`, see https://github.com/grpc/grpc-go/blob/master/Documentation/server-reflection-tutorial.md#grpc-cli. 17 18To use `grpcurl`, see https://github.com/fullstorydev/grpcurl. 19