Extensions becoming unknown fields

2008-10-28 Thread alent427
I have been trying to use protocol buffers to communicate between two processes over a network. In doing so, I'm experiencing a problem where I create a protocol buffer message and set it's extension, but then when I receive it on the other process, the extension doesn't register, it turns up as

Re: Extensions becoming unknown fields

2008-10-29 Thread alent427
On Oct 29, 4:42 am, Jon Skeet [EMAIL PROTECTED] wrote: You need to pass in an ExtensionRegistry in the parseFrom call. Have a look at the unit tests for examples (search for extension). Thanks Jon! I think I have a better understanding of how things work now.