[protobuf] protobuf to html form generator

2013-01-18 Thread teamchef0
Is there any code out there that automatically generates me a html form (html code) from my .proto that allows a user to fill out the protobuf message? So that, e.g., the server can return its serialization to the user? -- You received this message because you are subscribed to the Google

[protobuf] Re: Dynamic Message and google::protobuf::Message incompatibility

2013-01-18 Thread m
The furthest I followed it was looking down into the implementation of CopyFrom() which calls MergeFrom(). Inside of MergeFrom() there's a spot where it calls something like dynamic_cast_if_available which returns NULL (failing to dynamic_cast). On Thursday, January 17, 2013 10:20:13 PM

[protobuf] Parser error - missing required field

2013-01-18 Thread crotty . christopher
I built a small c++ test server and client app using protocol buffers over sockets. The server sends several packets made up of 1. a 32 bit marker (0xDEADBEEF) 2. a 32 bit size of message 3. the message data. The message format is message IQEvent { required int32id = 1;