[protobuf] Extensions not serializing properly?

2009-12-03 Thread Michael Laccetti
I'm trying to use PB as a means to send data from a C++ system to a Java-based ESB with BEEP as the underlying transport. For now, I'm using a test Java client to inject messages, just to ensure that the ESB is both listening and capable of processing the inbound messages. I've validated that my m

[protobuf] Re: Extensions not serializing properly?

2009-12-03 Thread Michael Laccetti
Oh, so awesome! That worked - much obliged! On Dec 3, 12:13 pm, Jason Hsueh wrote: > In Java you need to provide an ExtensionRegistry to the parse method > > Something like: > > ExtensionRegistry registry = ExtensionRegistry.newInstance(); > Test.registerAllExtensions(registry); > > Test.BsgRequ