[protobuf] Re: Ant task to create java stub from .proto files in all platforms

2010-08-12 Thread Prakash Rao
Yes, I agree to what you are saying Josh. I was looking something similar to wsdl2java (purely java) which is platform independent. I'm not sure whether this is something going to come in future versions. I tried the ant task which i listed above and it worked in windows/ cygwin. Thanks a lot

Re: [protobuf] Parsing problem using protobuf

2010-08-12 Thread Henner Zeller
On Wed, Aug 11, 2010 at 22:48, anup anup007s...@gmail.com wrote: Hi I am impkementing protobuffers in my Symbian application and during parsing I am sending a file to the proto parser but when I am collecting my attributes its giving garbage values along with the real data. I  dont know what

Re: [protobuf] Re: How to retrieve parameters using tag numbers using CodedInputStream

2010-08-12 Thread Jason Hsueh
A tag indicates to the decoder what is coming next in the input stream, and allows the decoder to handle it appropriately. This is a key feature of the protobuf wire format - this enables forward and backward compatibility, as well omitting fields that aren't present from the serialization. The

[protobuf] Why protobuf generates IMMUTABLEjava message?

2010-08-12 Thread Peng
Why does protobuf generate IMMUTABLE java message? but it seems it is not immutable for c++ codes. Thanks. Peng -- You received this message because you are subscribed to the Google Groups Protocol Buffers group. To post to this group, send email to proto...@googlegroups.com. To unsubscribe

Re: [protobuf] New RPC implementation for C++/C#

2010-08-12 Thread Marc Gravell
Ooh - interesting. I'll have to take a good look at that shortly. I'm thinking mainly C#-to-C# (due to my particular interests), and I'm also wondering what v2 might do to help you ;p Marc On 12 August 2010 00:17, Niall niallsspamcollec...@gmail.com wrote: Could I get a link to it added on the

Re: [protobuf] Why protobuf generates IMMUTABLEjava message?

2010-08-12 Thread Jason Hsueh
Here are some previous threads on the subject: http://groups.google.com/group/protobuf/browse_thread/thread/1699791071e92c83 http://groups.google.com/group/protobuf/browse_thread/thread/30d76b08545a0097 On Thu, Aug 12, 2010 at 9:52 AM, Peng dupeng...@gmail.com wrote: Why does protobuf generate