[grpc-io] Using grpc_cpp_plugin to generate a C++ code compatible with c++03

2017-02-22 Thread VK
Hello, I wonder if it's possible to generate a C++ code compatible w/C++ standards prior to 11, e.g. 03. Thanx a lot. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: [grpc-io] Re: Rendezvous of RPC that terminated with StatusCode.UNIMPLEMENTED

2018-04-14 Thread vk
Hi Mehrdad, I resolved this issue. This was happening due to missing "package xxx" statement from .proto file on client side. While debugging, I found that the package statement is missing from client side proto file, but server side proto file had that. Once I added the package statement, R