gRPCClient.jl icon indicating copy to clipboard operation
gRPCClient.jl copied to clipboard

A Julia gRPC Client

Results 20 gRPCClient.jl issues
Sort by recently updated
recently updated
newest added

Thanks for the work. my env is julia 1.8.2 ```protobuf syntax = "proto3"; package Embedder; // The greeting service definition. service Greeter { // Sends a greeting rpc embed_img (FImage)...

Testing a trivial ("Greater") sample on Windows ie gRPCClient.generate("greeter.proto") produces: --julia_out: protoc-gen-julia: Access is denied. It seems this is due to protoc-gen-julia_win.bat being read-only. The version of ProtoBuf used is...

Compared with the example C++ client https://github.com/grpc/grpc/blob/master/examples/cpp/helloworld/greeter_client.cc, which gets around 20μs, I'm getting ~300μs when connecting to localhost. I haven't tested this yet with a remote tcp connection. I can't...

When trying this out with helloworld, https://github.com/grpc/grpc/tree/master/examples/cpp/helloworld, calling `SayHello` in a loop (without any printing to stdout) results in: ``` julia> @benchmark HelloworldClients.SayHello(client, HelloworldClients.helloworld.HelloRequest(name="Hello world")) ERROR: gRPCServiceCallException: 13, Couldn't initialize...

ref: https://github.com/JuliaLang/Downloads.jl/issues/110

> Set a suitable package name without `.` This seems a bit annoying since one has to modify some upstream proto files. Or at least trying to parse `option julia_package="..."`...

Could the readme be extended with a paragraph about the difference to https://github.com/tanmaykm/gRPC.jl and whether there are plans for a gRPCServer.jl (or if that's not needed, suggesting that, since the...

I need to add an auth token (and other metadata ) to the gprc headers, and update it regularly when they expire. What is the recommended way to do that?...

gRPCClient.jl requires ProtoBuf v0.11. It is incompatible with 1.x versions of ProtoBuf as it was a significant rewrite and protobuf services are not yet supported there. This PR is to...

Curl seems to be reporting errors with message "Error: curl_multi_socket_action: 8" when I tried the current master on Julia 1.10.0. I haven't delved too much, but this seems to be...