[protobuf] RuntimeException while parsing back the byte[] to protocol buffer message instance! (deserialization)

2011-03-04 Thread Aditya Narayan
I tried following code for encoding and decoding. Decoding from byte[] fails, however. Code:- public static void test(){ Comment comment = Comment.newBuilder() .setCommentBody(This is 1st comment) .build(); byte[] bytes =

[protobuf] RuntimeException while parsing back the byte[] to protocol buffer message instance! (deserialization)

2011-03-04 Thread Aditya Narayan
I tried following code for encoding and decoding. Decoding from byte[] fails, however. Code:- public static void test(){ Comment comment = Comment.newBuilder() .setCommentBody(This is 1st comment) .build(); byte[] bytes =

Re: [protobuf] RuntimeException while parsing back the byte[] to protocol buffer message instance! (deserialization)

2011-03-04 Thread Evan Jones
On Mar 4, 2011, at 11:11 , Aditya Narayan wrote: Exception in thread main java.lang.RuntimeException: Uncompilable source code This error means there is a build problem in your Eclipse project. You are trying to call some code that is not building compiled correctly. Fix your

Re: [protobuf] RuntimeException while parsing back the byte[] to protocol buffer message instance! (deserialization)

2011-03-04 Thread Aditya Narayan
Thanks Evan Seems like I am missing some files. I have just created a .proto file and compiled it with protoc to get generated java files. I got .java file compiled and put it with the java's source folder from protobuf 2.4.a in my project folder. But some of the class dependency of the