Joshua Humphries
Joshua Humphries
Also, while far less convenient, you should also be able to run `grpcui` and provide it proto sources and import paths. That will not encounter the same linking issues because...
@MjdBh, how are clients created for that? I don't know of any gRPC client library that lets you add an arbitrary base URI. The [gRPC wire format spec](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md) indicates that...
FWIW, this kind of functionality is typically done instead using either virtual host routing or [grpc-gateway](https://github.com/grpc-ecosystem/grpc-gateway) (where different path patterns in a REST API can map to different backend services).
@AirEM, the response currently always shows timestamps in UTC (in fact, you should see a trailing "Z", [indicating the the time zone shown is UTC](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)). So you are probably right...
@ameetchhatwal, can you elaborate what you mean? The README already has examples of using it. Did you instead mean Go code examples of using the standalone _package_?
@ameetchhatwal, I still don't understand. The README makes no mention of "standalone app". It has a single reference to the standalone Go package though. Are you asking how to embed...
There is an example in the Go docs for that package: https://godoc.org/github.com/fullstorydev/grpcui/standalone In that example, you could have it dial "localhost" to connect to the server that is running in...
@ameetchhatwal, if the above is what you need, feel free to close this issue.
@saemi-park, the error message suggests that there may have been a typo somewhere. But the official releases do not have this problem (and I don't think master ever had a...
@ashu82492, I _think_ this is fixed in #160. This pulls in a new version of the grpc-go library, and using `-authority` should set the server name. The `-servername` option is...