[protobuf] Issue 379 in protobuf: Build failure with MSVC2011

2012-03-26 Thread protobuf
Status: New Owner: liuj...@google.com Labels: Type-Defect Priority-Medium New issue 379 by thier...@filewave.com: Build failure with MSVC2011 http://code.google.com/p/protobuf/issues/detail?id=379 What steps will reproduce the problem? 1. build with MSVC2011 2. failure to buid

[protobuf] Memory leaks in VS2008 using 2.4.1

2012-03-26 Thread Eric Holtman
I've tried building the library as static. I've tried building the library as dll. I've even gone so far as starting from scratch and building my own project, and including all the .cc and .h files. I cannot make the memory leaks on program exit go away. I am definitely calling

[protobuf] [Java][Python][TCP] Reading messages that where written with writeDelimited and viceversa

2012-03-26 Thread Galileo Sanchez
Hello! I've been searching in this group a little bit, and found this https://groups.google.com/forum/?fromgroups#!searchin/protobuf/python$20delimited/protobuf/_3gAmvU4_80/rEeMA3A9H1UJ Now, I'm very very very new to python, never heard of it kind of new, so I got a little confused on how to

[protobuf] Problem with accent

2012-03-26 Thread Simon
Hi guys, I have an annoying problem with some accent. I build my proto-object, no problem, and when i want to read it the browser, using .toString function, i have \303\240 instead of à, \303\250 instead of è, etc... So i'm wondering where can be the problem ? Eclipse encode the files in UTF-8,

Re: [protobuf] Memory leaks in VS2008 using 2.4.1

2012-03-26 Thread Henner Zeller
On Sun, Mar 25, 2012 at 06:55, Eric Holtman e...@holtmans.com wrote: I've tried building the library as static.   I've tried building the library as dll.  I've even gone so far as starting from scratch and building my own project, and including all the .cc and .h files. I cannot make the

Re: [protobuf] Problem with accent

2012-03-26 Thread Evan Jones
On Mar 23, 2012, at 9:07 , Simon wrote: I have an annoying problem with some accent. I build my proto-object, no problem, and when i want to read it the browser, using .toString function, i have \303\240 instead of à, \303\250 instead of è, etc… What do you mean i want to read it the browser

Re: [protobuf] Memory leaks in VS2008 using 2.4.1

2012-03-26 Thread Eric J. Holtman
On 3/26/2012 7:25 PM, Henner Zeller wrote: Can you drill down _what_ object is leaking ? In particular, did you narrow down that it is indeed protobufs that cause the leak ? You need to find the leaking object first, otherwise it is a bit hard do diagnose what is going on. I just finally

Re: [protobuf] [Java][Python][TCP] Reading messages that where written with writeDelimited and viceversa

2012-03-26 Thread Evan Jones
On Mar 25, 2012, at 18:09 , Galileo Sanchez wrote: else if (Should I write the size as a raw bit string?) thenHow do I do that? You need to use something like the following. Not 100% sure it works but it should be close? Hope this helps, Evan # Output a message to

Re: [protobuf] [Java][Python][TCP] Reading messages that where written with writeDelimited and viceversa

2012-03-26 Thread Galileo Sanchez
Thanks man... It worked great! I guess I should read the documentation a little more xP. On Monday, March 26, 2012 9:49:17 PM UTC-3, Evan Jones wrote: On Mar 25, 2012, at 18:09 , Galileo Sanchez wrote: else if (Should I write the size as a raw bit string?) then