How to handle DataContracts in NETCF ?

2009-04-06 Thread Christian Weyer
Hi experts, I have a bunch of WCF services which use DataContracts in their interface. We tried using the built-in serializer in NETCF and encountered that it is really bad in performance in deserializing larger pieces of data :( So we went to look into protbuf-net... But I am not sure how I

Re: Platforms supported for C++ gen code

2009-04-06 Thread Shirish Kulkarni
Thanks for information Kenton. :) Regards, Shirish On Fri, Apr 3, 2009 at 10:20 PM, Kenton Varda ken...@google.com wrote: On Fri, Apr 3, 2009 at 2:18 AM, Shirish Kulkarni shirish...@gmail.comwrote: Can I suppose it could be well ported to - say 64-bit AIX - platform as well? I would

Compile error with imported Message

2009-04-06 Thread Günther Makulik
Hi, I have defined a message that imports another message from a different package: File Message1.proto: = import Namespace2/Message3.proto; package Namespace1; message Message1 { ... optional Namespace2.Message3 ImportedField = 5;

RE: Compile error with imported Message

2009-04-06 Thread Günther Makulik
OK, I have found the problem ... It was how I organized my makefile(s). I tried to step down into each namespace directory and to compile with protoc from a local scope. I need to compile everything (protoc and GCC) relative to the top level namespace directory, that's it. If someone's