thriftcli
thriftcli copied to clipboard
Command line client for Thrift services
When I tried to run this in a virtual environment: ``` (thriftcli) user:~$ thriftcli localhost:8914 Service.getEntity ~/Thrift/definition.thrift -I ~/Thrift/common -b '{"request":{"filter":{"id":"1"}}' ``` I got this: ``` No handlers could be...
When the output of the thrift call contains binary data, the json output option does not seem to work. The call worked without it but with it, I get exception...
It looks like the service endpoint parser will have trouble extracting methods that have snake case parameters This is the current regex matching when presenting snake case parameters ``` alex@computer:~$...
This adds support for sending requests to thrift when the message must go over HTTP instead of the default thrift transport. Another flag should be made to allow to set...
Having the following as `thrift` file: ``` namespace java com.github.test struct HealthRequest { 1: required string userId } struct HealthResponse { 1: required string status } service Test { HealthResponse...