1
vote
2answers
29 views
DataContract serialization with protobuf-net r275
I just updated to r275 version and it doesn't seem to manage correctly DataContract classes any more
By serializing this very simple class:
[DataContract]
public class ProtoData
…
1
vote
1answer
17 views
Can I use net.tcp bindings for protobuf-net WCF?
Can I use net.tcp bindings for protobuf-net WCF?
Can I use ClientBase or I have to use ProtoClient?
0
votes
1answer
20 views
protobuf-net: Incorrect wire-type deserializing TimeSpan
I get this exception when my client application is trying to deserialize a message comming from WCF service ("Incorrect wire-type deserializing TimeSpan").
I'm using .NET 3.5 SP1 …
10
votes
1answer
232 views
How does protobuf-net achieve respectable performance?
I want to understand why the protocol buffers solution for .NET developed by Marc Gravell is as fast as it is.
I can understand how the original Google solution achieved its perf …
0
votes
1answer
103 views
protocol buffers .net (protobuf-net) 10x slower that xml serializer. how come?
the title says it all. i noticed that serialization as well des deserialization takes 10x as lang with protobuf-net compared to XmlSerializer. the output files however are much sma …
1
vote
2answers
64 views
Why is my WCF server returning empty responses using protobuf-net ?
I've updated an existing WCF application to add protobuf-net support.
Basically, I've :
added protobuf-net.dll (.net 3.0) as a reference in the assembly containing all my data ob …
2
votes
1answer
47 views
Error while using ProtoBuf-Net with flags enum.
While using ProtoBuf-Net and serializing an enum property, where the enum is set to [FlagsAttribute], I received the following error message when serializing an enum value composed …
1
vote
1answer
48 views
Deserialization fail after switching PrefixStyle to Fixed32
I have a test suite for a communication library I'm developing using protobuf-net that is running okay. All tests pass. But if I change the PrefixStyle from Base128 to Fixed32, the …
0
votes
1answer
24 views
ProtoInclude for fields ?
I have a simple object
[ProtoContract]
public class DataChangedEventArgs<T> : EventArgs
{
private readonly object key;
private readonly T data;
private readonly …
1
vote
1answer
27 views
C++ equivalent to SerializeWithLengthPrefix
I built a communication library using Protocol Buffers (protobuf-net) using Sockets (TcpListener and TcpClient) and it is working fine, but now a co-worker needs to write a library …
1
vote
0answers
60 views
Calling WCF service w/ ProtoBehavior and multiple parameters
This one has me puzzled and am hoping it's a silly oversight on my part. When I call the following web service, if a null parameter is encountered then all following parameters ar …
1
vote
1answer
55 views
protobuf.net not serializing zero
Hello
It looks like there is an encoding problem for 0 as Int64. Other values as Int64 ok.
[ProtoMember(3)] private readonly Int64 _intValue
is deserialized as Int64.MinValue
…
1
vote
1answer
127 views
How to use list/array of some object inheritance with Protobuf/Protobuf-net ?
Using Protobuf/Protobuf-net and two classes, one base class and the other derived from the base.
How would you serialize/deserialize a list ?
For instance:
public class SomeBase
…
1
vote
2answers
59 views
Is it possible to use Protobuf-Net with a class without a parameterless constructor?
Using Protobuf-Net, I see that it does not seem possible to deserialize a class without having a parameterless constructor or I may be missing something?
I don't want some of the …
2
votes
2answers
116 views
How do I generate a .proto file from a C# class decorated with attributes?
Trying to get my mind around google protobuf. I found some implementation of protobuf in C# but they seems to lack one feature: the ability to generate .proto files automatically f …
