Joshua Humphries

Results 433 comments of Joshua Humphries

@zhouzhuojie, what you describe is certainly do-able, but seems like it could complicate the command-line interface a bit or require a rather different GUI (which allows the backend to be...

@augi, this feature is still unimplemented.

An interesting idea from [another issue](https://github.com/fullstorydev/grpcui/issues/48) (that was a duplicate of this one) that is interesting to consider: @sheepdreamofandroids said: > The way I see it, there is no need...

In a docker image, the process runs on a different network interface -- a virtual network interface. So `localhost` doesn't work -- it only works to connect to other processes...

@Oleg26Dev, looks like your server is using a self-signed cert that is only valid for the `localhost` host name. You could either have that cert generated to include `host.docker.internal` as...

As the error message states, with an absolute path to a proto source file, you must provide an `-import-path`. It must be an ancestor folder of the absolute path given...

@testQx, even when you provide proto sources, you still have to provide the host:port of the server to which you're sending a request. > How do I skip the GRPC...

@hoveychen, this is not really a grpcui issue. It's a known issue inside of the protobuf runtime for Go, regarding how descriptors are registered: https://github.com/golang/protobuf/issues/567 I also have an existing...

Now that I think about it, if you are using service reflection, it really is an issue in service reflection, that effects _all_ runtimes, not just Go. So it's not...

@hoveychen, I filed https://github.com/grpc/grpc/issues/19832 because issues of this kind can be a real thorn in the side for anyone that uses service reflection. However, I also realized that the problem...