Hi, I am developing a sniffer that will sniff messages moving between a message broker and DWH. The messages are written in "protocol buffers" serialization format. So the message body that I sniff is a byte string.
How do I decode this message to human readable format? The sniffer is developed in c# .net . I tried using System.Text.Encoding.UTF8.GetString(body) , but extra character gets added maybe because UTF8 doesn't identify this format. Thanks. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
