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
Send non-proto rpc
For using gRPC with protocols other than protobuf, you will need the exact method name string and a file containing the raw bytes to be sent on the wire.
$ grpc_cli call localhost:50051 /helloworld.Greeter/SayHello \
--input_binary_file=input.bin \
--output_binary_file=output.bin
On success, you will need to read or decode the response from the output.bin file.
https://github.com/grpc/grpc/blob/master/doc/command_line_tool.md
Your tool can't do this, right?
The text was updated successfully, but these errors were encountered: