Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
a8f2621d
Commit
a8f2621d
authored
8 years ago
by
Yuchen Zeng
Browse files
Options
Downloads
Patches
Plain Diff
Fix dead links
parent
c6e90761
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/server_reflection_tutorial.md
+6
-7
6 additions, 7 deletions
doc/server_reflection_tutorial.md
with
6 additions
and
7 deletions
doc/server_reflection_tutorial.md
+
6
−
7
View file @
a8f2621d
...
@@ -18,8 +18,8 @@ contain symbols used by the application. On these platforms, LD flag
...
@@ -18,8 +18,8 @@ contain symbols used by the application. On these platforms, LD flag
`--no-as-needed`
is needed for for dynamic linking and
`--whole-archive`
is
`--no-as-needed`
is needed for for dynamic linking and
`--whole-archive`
is
needed for for static linking.
needed for for static linking.
This
[
Makefile
](
examples/cpp/helloworld/Makefile#L37#L45
)
demonstrates
enabling
This
[
Makefile
](
../
examples/cpp/helloworld/Makefile#L37#L45
)
demonstrates
c++ server reflection on Linux and MacOS.
enabling
c++ server reflection on Linux and MacOS.
## Test services using Server Reflection
## Test services using Server Reflection
...
@@ -27,8 +27,7 @@ gRPC Server Reflection is supported by gRPC CLI. After enabling Server
...
@@ -27,8 +27,7 @@ gRPC Server Reflection is supported by gRPC CLI. After enabling Server
Reflection in a server application, you can use gRPC CLI to test its services.
Reflection in a server application, you can use gRPC CLI to test its services.
Instructions on how to use gRPC CLI can be found at
Instructions on how to use gRPC CLI can be found at
[
command_line_tool.md
](
doc/command_line_tool.md
)
, or using
`grpc_cli help`
[
command_line_tool.md
](
command_line_tool.md
)
, or using
`grpc_cli help`
command.
command.
Here we use
`examples/cpp/helloworld`
as an example to show the use of gRPC
Here we use
`examples/cpp/helloworld`
as an example to show the use of gRPC
Server Reflection and gRPC CLI. First, we need to build gRPC CLI and setup an
Server Reflection and gRPC CLI. First, we need to build gRPC CLI and setup an
...
@@ -37,8 +36,8 @@ example server with Server Reflection enabled.
...
@@ -37,8 +36,8 @@ example server with Server Reflection enabled.
-
Setup an example server
-
Setup an example server
Server Reflection has already been enabled in the
Server Reflection has already been enabled in the
[
Makefile
](
examples/cpp/helloworld/Makefile
)
of the helloworld example. We
can
[
Makefile
](
../
examples/cpp/helloworld/Makefile
)
of the helloworld example. We
simply make it and run the greeter_server.
can
simply make it and run the greeter_server.
```
sh
```
sh
$
make
-C
examples/cpp/helloworld
$
make
-C
examples/cpp/helloworld
...
@@ -141,7 +140,7 @@ We can send RPCs to a server and get responses using `grpc_cli call` command.
...
@@ -141,7 +140,7 @@ We can send RPCs to a server and get responses using `grpc_cli call` command.
Server Reflection can be used by clients to get information about gRPC services
Server Reflection can be used by clients to get information about gRPC services
at runtime. We've provided a descriptor database called
at runtime. We've provided a descriptor database called
[
grpc::ProtoReflectionDescriptorDatabase
](
test/cpp/util/proto_reflection_descriptor_database.h
)
[
grpc::ProtoReflectionDescriptorDatabase
](
../
test/cpp/util/proto_reflection_descriptor_database.h
)
which implements the
which implements the
[
google::protobuf::DescriptorDatabase
](
https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.descriptor_database#DescriptorDatabase
)
[
google::protobuf::DescriptorDatabase
](
https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.descriptor_database#DescriptorDatabase
)
interface. It manages the communication between clients and reflection services
interface. It manages the communication between clients and reflection services
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment