[grpc-io] Re: What is TE in request for?

2019-06-24 Thread 'Christopher Warrington - MSFT' via grpc.io
On Monday, June 24, 2019 at 10:32:19 AM UTC-7, Yaxiong Zhao wrote: > The doc (https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md) > says TE → "te" "trailers" # Used to detect incompatible proxies. I have no > idea how it's used for detecting incompatible proxies. Does the HTTP2 spec

[grpc-io] Re: receiving the byte array for a protobuff in a streaming grpc

2019-06-24 Thread 'Carl Mastrangelo' via grpc.io
You don't have to use the proto generated stubs. You can make your own serializer / deserializer and persist the data. You can even delegate to the next serializer and reuse the proto ones, if you want. (this is for Java) On Monday, June 24, 2019 at 7:18:50 AM UTC-7, Elhanan Maayan wrote:

[grpc-io] Re: Thread leak while use ManagedChannel in grpc Java

2019-06-24 Thread 'Carl Mastrangelo' via grpc.io
You'll need to include a thread dump to diagnose this further. On Wednesday, June 19, 2019 at 8:52:54 PM UTC-7, Deepak Agarwal wrote: > > Hi all, > I am using grpc java as a grpc client to connect to a remote GRPC > server. The RPC is a server streaming RPC. > I first build the channel

[grpc-io] What is TE in request for?

2019-06-24 Thread Yaxiong Zhao
The doc (https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md) says TE → "te" "trailers" # Used to detect incompatible proxies. I have no idea how it's used for detecting incompatible proxies. Could someone provide some pointers? -- You received this message because you are subscribed

Re: [grpc-io] Parses gRPC's raw HTTP2 traffic in the HTTP2 DATA frame

2019-06-24 Thread Yaxiong Zhao
Thanks Michael! You are right. I mistakenly concluded that response message is missing the doc for length prefixed message, and forgot that request section has the details. Created https://github.com/grpc/grpc/pull/19450 to add a reference. On Wed, Jun 19, 2019 at 2:49 PM Michael Lumish wrote:

[grpc-io] receiving the byte array for a protobuff in a streaming grpc

2019-06-24 Thread Elhanan Maayan
hi.. is there a way for a streaming call in grpc to accept it's binary array prior to it being turned into protobuff? i'm aware that protobuff itself has this ability, but getting the byte array , turning it into an object and then turning it back to byte array seems redundant. the reason

[grpc-io] Re: grpc c++ link error in Visual Studio 2017

2019-06-24 Thread Martin Scholz
Got it. Forgot to explicit include the lib files in Visual Studio under *Linker->Input->Additional Dependencies* Am Montag, 24. Juni 2019 10:04:14 UTC+2 schrieb Martin Scholz: > > Is anyone able to build grpc on windows with Visual Studio? I was > following this guide

[grpc-io] grpc c++ link error in Visual Studio 2017

2019-06-24 Thread Martin Scholz
Is anyone able to build grpc on windows with Visual Studio? I was following this guide https://github.com/grpc/grpc/blob/master/BUILDING.md. On Mac i'm just running ```make```, add the libraries and headers to my project, build it and voila. Everything works. On windows when i adding the