Re: [protobuf] Proto File not found while running protoc

2023-02-26 Thread ritesh singh
I was also wondering, if https://mvnrepository.com/artifact/com.google.protobuf/protoc can be used to do what above *protoc *command is doing? Because, to run the protoc command from my plugin, the user's machine needs to have the protoc compiler installed. My idea is to just get the .proto

[protobuf] Using google proto as a on wire data format

2023-02-26 Thread Sumit Patil
Hii everyone, I am trying to use google proto to transfer data from client to server and vice versa. I am not getting, how I can implement such thing. I am thinking of these steps: * Client 1. Set proto message's fields 2. Serialize to byte array 3. encrypt 4. Send from client * Server 1.

[protobuf] Re: Using google proto as a on wire data format

2023-02-26 Thread Sumit Patil
Note - lang = CPP On Sunday, 26 February, 2023 at 10:38:40 pm UTC+5:30 Sumit Patil wrote: > Hii everyone, > I am trying to use google proto to transfer data from client to server and > vice versa. > I am not getting, how I can implement such thing. > I am thinking of these steps: > * Client >