Re: [protobuf] Missing field converting proto message from byte[] to "com.google.protobuf.Message"

2023-03-28 Thread Nadav Samet
Hi Joan, The code example doesn't work since you are trying to deserialize a message of type "Request" into a message of type "Struct" - the messages are unrelated. I assume the misconception is that Struct would give you some generic way to inspect the Request message, but that's not the case.

[protobuf] Missing field converting proto message from byte[] to "com.google.protobuf.Message"

2023-03-27 Thread Joan Balagueró
Hello everyone, I'm absolutely new to probuf. So this is my issue. We have implemented a proxy that receives a protobuf message as a byte array in a post message, and we only have to bypass this proto to the backend, receive the response (also in protobuf) and return it to the origin. That