[protobuf] gRPC: Google's RPC framework that works with Protocol Buffers

2015-03-10 Thread Feng Xiao
In case you are not yet aware of: Google has open-sourced its own RPC framework, named gRPC, about two weeks ago. gRPC website: http://www.grpc.io/ It's basically Google's official RPC implementation for Protocol Buffers (in particular for proto3), but released as a separate project. For those

Re: [protobuf] FileDescriptor to .proto?

2015-03-10 Thread Himanshu Agarwal
Yeah Thanks, it's there. Himanshu Agarwal On Wed, Mar 11, 2015 at 5:47 AM, Feng Xiao xiaof...@google.com wrote: On Wed, Feb 11, 2015 at 9:53 AM, Himanshu Agarwal agarwal.himanshu...@gmail.com wrote: Hi I'm looking for a method to print a FileDescriptor to a .proto file in C++. I was

Re: [protobuf] Message was missing required fields

2015-03-10 Thread Patrick Linehan
Nearly 5 years later, I found myself having the same problem. Perfectly-valid serialized protobufs generated in C++ for message types with no required fields suddenly started throwing InvalidProtocolBufferException: Message was missing required fields. exceptions in Java. The problem is, as

[protobuf] Re: Issue 689 in protobuf: Repeated fields do not serialize the 'size' into the file. Hence deserialize of repeated expects an unending sequence of repeated fields

2015-03-10 Thread protobuf
Updates: Status: WorkingAsIntended Owner: xiaof...@google.com Comment #1 on issue 689 by xiaof...@google.com: Repeated fields do not serialize the 'size' into the file. Hence deserialize of repeated expects an unending sequence of repeated fields

Re: [protobuf] Re: Protobuf Buffers v3.0.0-alpha-1

2015-03-10 Thread 'Feng Xiao' via Protocol Buffers
On Thu, Feb 26, 2015 at 11:55 PM, Kevin Baker kba...@gmail.com wrote: Hi, Thanks for all your work with protobuf. I am excited about the changes with proto3 that will reduce errors (no forgetting to set has_* in nanopb, yay!) and will make mapping into new languages much simpler, helping our

Re: [protobuf] MD5/SHA1 for protoc-2.6.1-win32 and protobuf-java-2.6.1

2015-03-10 Thread 'Feng Xiao' via Protocol Buffers
protoc-2.6.1-win32.zip is not uploaded to maven. You need to download it from the release page: https://github.com/google/protobuf/releases/tag/v2.6.1 On Tue, Mar 3, 2015 at 8:26 AM, Kishor Kumar kishor...@gmail.com wrote: Hi Feng, I was looking for checksum (MD5/SHA1) for

Re: [protobuf] Protocol Buffers 2.6.1

2015-03-10 Thread 'Feng Xiao' via Protocol Buffers
On Tue, Feb 24, 2015 at 12:20 PM, Huang Jin jin.aa...@gmail.com wrote: Does it support bit field? Sorry for flooding the message... No. You'll need to pack/unpack bit fields yourself into a uint32 or uint64 proto field. -- You received this message because you are subscribed to the Google

Re: [protobuf] Questions about Protocol Buffers v3.0.0-alpha-2

2015-03-10 Thread 'Feng Xiao' via Protocol Buffers
On Mon, Mar 9, 2015 at 9:52 AM, Alfred Kwan alfred...@gmail.com wrote: It is surprising to see there is no post about the alpha-2 released! (release note was dated in February 26th) We have came across a few bugs in the C++ alpha-1 release so I hope they are being addressed in alpha-2. I

[protobuf] Issue 693 in protobuf: clan scan-build analysis of generated protobuf code produces warnings.

2015-03-10 Thread protobuf
Status: New Owner: liuj...@google.com Labels: Type-Defect Priority-Medium New issue 693 by gahan.ro...@gmail.com: clan scan-build analysis of generated protobuf code produces warnings. https://code.google.com/p/protobuf/issues/detail?id=693 What steps will reproduce the problem? 1. generate

Re: [protobuf] FileDescriptor to .proto?

2015-03-10 Thread 'Feng Xiao' via Protocol Buffers
On Wed, Feb 11, 2015 at 9:53 AM, Himanshu Agarwal agarwal.himanshu...@gmail.com wrote: Hi I'm looking for a method to print a FileDescriptor to a .proto file in C++. I was browsing through the threads and code and the only solution i was able to find out is through DebugString() Api.

[protobuf] Re: Issue 613 in protobuf: protoc: Add options to redirect input / output to files.

2015-03-10 Thread protobuf
Comment #1 on issue 613 by vap...@chromium.org: protoc: Add options to redirect input / output to files. https://code.google.com/p/protobuf/issues/detail?id=613 https://github.com/google/protobuf/pull/235 -- You received this message because this project is configured to send all issue

Re: [protobuf] Re: Protobuf Buffers v3.0.0-alpha-1

2015-03-10 Thread Kevin Baker
That's great news, thanks!!! Looking forward to proto3! Kevin On Tue, Mar 10, 2015 at 3:24 PM, Feng Xiao xiaof...@google.com wrote: On Thu, Feb 26, 2015 at 11:55 PM, Kevin Baker kba...@gmail.com wrote: Hi, Thanks for all your work with protobuf. I am excited about the changes with

Re: [protobuf] Multibye character in protobuf getting corrupted while serializing and serializing.

2015-03-10 Thread Nishant Verma
Thanks Ilia Mirkin, What I gave is just a part of message, the files generated are sometimes more than 4 MB in size. And this issue is spread across the fields. How to identify when and where apply the Unicode conversion will become issue. Regards, Nishant On Monday, March 9, 2015 at 4:36:53

[protobuf] protocbuff 2.5.0 not support openjdk 1.6.0_22

2015-03-10 Thread long zhao
java version 1.6.0_22 OpenJDK Runtime Environment (IcedTea6 1.10.4) (rhel-1.41.1.10.4.el6-x86_64) OpenJDK 64-Bit Server VM (build 20.0-b11, mixed mode) when do this method requestInfoWrapper.parseFrom(bytes); errror occurs,InvalidProtocolBufferException ! but sunjdk 1.6 works well -- You