It sounds to me like the receiving end didn't actually receive any data -- you had it parse an empty message, or a garbage message.
You should verify that the bytes you got from the serializer and the bytes you fed to the parser are really the same. For example, compute a checksum at both ends and print it, then verify manually that they match. On Fri, Feb 5, 2010 at 8:43 AM, Hershiv Haria <[email protected]>wrote: > Hi all, > > I have an odd issue at the moment. I am sending a PB from an android > app to an app engine server, using Java. My app is being used to store > files online, and I use the PB to send the file name, destination, and > file data (as a string). > > The problem is that when I send it from the android app, it is fine, > but attempting to parse it on the server gives my ints as 0 and my > strings as null. HOWEVER, if I use the same PBs in a test project, it > works fine. > > Any ideas why this would happen? > > -- > You received this message because you are subscribed to the Google Groups > "Protocol Buffers" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<protobuf%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/protobuf?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
