Re: [protobuf] Protocol Buffer Wrappers returning single character

2019-11-05 Thread SW89
syntax = "proto3"; import "google/protobuf/wrappers.proto"; message Test { google.protobuf.StringValue name = 1; } -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To unsubscribe from this group and stop receiving emails from it, send

Re: [protobuf] Protocol Buffer Wrappers returning single character

2019-11-05 Thread Marc Gravell
Can you show what you mean by wrappers here? If you dump the payload and inspect it (protoc, or there's a tool at https://protogen.marcgravell.com/decode), is the data in the payload? A minimal example, in some way, would really help On Tue, 5 Nov 2019, 20:55 SW89, wrote: > Good Afternoon, > >

[protobuf] Protocol Buffer Wrappers returning single character

2019-11-05 Thread SW89
Good Afternoon, My team is working to implement Protobuf into our angular/C# web application however we have run into a snag regarding the implementation of wrapper types. We needed to support the notion of null values and came across the implementation of wrappers to facilitate this with