You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gRPC tools such as grpcurl can take advantage of server reflection to avoid the need to specify a proto file (or equivalent compiled representation) when interacting with a Helidon-based gRPC service. For example, in order to access our RandomService example, the proto param is required as shown next:
With support for server reflection, the proto information will be automatically discovered at runtime, simplifying the use of tools like this. More information about server reflection available here.
The text was updated successfully, but these errors were encountered:
Problem Description
gRPC tools such as
grpcurl
can take advantage of server reflection to avoid the need to specify a proto file (or equivalent compiled representation) when interacting with a Helidon-based gRPC service. For example, in order to access ourRandomService
example, the proto param is required as shown next:With support for server reflection, the proto information will be automatically discovered at runtime, simplifying the use of tools like this. More information about server reflection available here.
The text was updated successfully, but these errors were encountered: