An independent implementation of Google's protobuf binary serialization format, protobuf-net approaches the problem-space with common .NET coding styles, but retaining the high performance, dense output and cross-platform interoperability. In particular (compared to most implementations), it ...

learn more… | top users | synonyms

1
vote
1answer
5 views

DefaultValue properties deserialization

I'm trying to deserialize stream to object with default value properties and protobuf-net just ingores this properties when they are missing in the stream. Do i need to manually set before ...
1
vote
1answer
13 views

protobuf-net - generated class from .proto - Is repeated field supposed to be Read Only with no setter?

I am totally confused about this. I have looked around and can't seem to find a direct answer. I have a .proto file that my project, which has all been java, uses to create some messages. There is a ...
5
votes
1answer
76 views

Protobuf-net (de)serialization of decimals throws when using custom decimal proto contract (C#/C++ interop)

Say I want to serialize, then deserialize a decimal using protobuf-net: const decimal originalDecimal = 1.6641007661819458m; using (var memoryStream = new MemoryStream()) { ...
3
votes
1answer
40 views

Deserializing a different List with protobuf-net

I have a problem with deserialization Protobuf-net. I serialize a List<> but when I deserialize the List<> returned is not identical to the first. There is missing data. I do not ...
1
vote
1answer
27 views

Protrobuf - Error : Timeout while inspecting metadata

I am receiving the following exception "Timeout while inspecting metadata; this may indicate a deadlock. This can often be avoided by preparing necessary serializers during application ...
1
vote
1answer
53 views

Issue deserializing (protocolBuffer) serialized data using protobuf-net

I serialized data using protobuf-net, and am able to deser the same in C#. putting a C# dummy w# var file = File.Create("animal.bin"); //Creating Msg - Fill the Data animal.id = "1"; animal.Name = ...
1
vote
1answer
30 views

Protobuf-net : Nested IEnumerable objects

I am using Protobuf-net to serialize a custom nested list. I understand that native lists cannot be nested directly, which is why I have used a container object for the inner list. However, I would ...
1
vote
1answer
284 views

Generated file with protobuf-net for c# is different a little from the same file generated in C++

I'm having a wired issue, I'm using protobuf-net for C# to generate a file which based on Google Protocol Buffer message and then upload it to one of my company's servers. I created a tool in C# that ...
0
votes
0answers
28 views

Protobuf-net Jagged/multidim arrays, surrogate, wrapper etc one more time

I have found many similar questions here on the stackoverflow. But this one becomes really point of my interest : How do you serialize/deserialize jagged/nested arrays with protobuf-net? From Marc`s ...
1
vote
1answer
24 views

Protobuf-net Gendarme Errors

Recently came across protobuf-net, awesome library. I ran it through gendarme and it came up with many performance notifications, e.g: Target: System.Int32 ProtoBuf.ProtoReader::ReadFieldHeader() ...
1
vote
2answers
38 views

Protobuf-Net Empty List

Came across protobuf-net, awesome! I have a question regarding serialization of empty lists. I start by declaring the object I want to serialize: [ProtoContract] class TestClass { ...
1
vote
1answer
39 views

Serializing immutable collections with protobuf-net

I'm trying to serialize a class with protobuf-net which contains an immutable collection as a member. The collection type, ImmutableList<T>, implements ICollection<T> but returns true for ...
1
vote
1answer
29 views

Invalid binary character when transmitting ProtoBuf-net messages over AWS SQS

I'm using Protobuf-net (https://code.google.com/p/protobuf-net/) to serialize my class, and then trying to transmit this via amazon SQS. When I do that I get this error: ...
2
votes
1answer
52 views

Serialize a protoBuf-net message to a stream c# - getting error “Only data-contract classes can be processed”

I have a message in protoBuf which called "package", I generated my .proto file to classes in purpose to fill all the required fields in that "package" and it works fine. Now, I have that protoBuf ...
2
votes
1answer
67 views

Protobuf-net Root-Level List Serialization AsReference

I am attempting to serialize a collection of objects using the protobuf-net library. I am running into an issue where the top-level objects in the collection are not being set up as references in a ...
1
vote
1answer
20 views

InvalidOperationException when SetFactory for RuntimeTypeModel

I need to add the System.Drawing.Color to the default model, but its values are readonly, so I tried to do the following : MetaType colorMeta = RuntimeTypeModel.Default.Add(typeof(Color), true); ...
1
vote
1answer
26 views

Can't serialize property when its parent inherits from IList<>

I use the following data structure for my Family class that inherits from IList<string> : public class Family : IList<string> { public string LastName { get; set; } ...
1
vote
1answer
44 views

protobuf-net repeated field as ObservableCollection<T>

When I compile this sample .proto file with protobuf-net: message A { repeated float values = 1; } The generated file contains class which has List<Single> property. Is there any way to ...
1
vote
3answers
54 views

How do you serialize types in an inheritance chain with protobuf-net surrogates?

If you have two (or more) classes in an ineritance chain (GeoCoordinate inherits from PointF2D in this case) how do you use surrogates correctly to allow serialization of either type? As an example, ...
1
vote
1answer
21 views

Using the WebApiContrib ProtoBufFormatter on the Client Side

I'm using the WebApiContrib.Formatting.ProtoBuf NuGet package (http://nuget.org/packages/WebApiContrib.Formatting.ProtoBuf/0.9.5.0) to add support for Protocol Buffers in my Web API project. The ...
2
votes
1answer
61 views

Protobuf-net with ServiceStack and compact framework

I wrote a server that uses servicestack, and a client that connects to it using both JSON and protobuf-net (so I'm sure the server works...). Now I need to develop the same client on Windows Mobile ...
1
vote
1answer
36 views

Is it possible to parse non-protobuf messages using protobuf?

I am working on a project where we are using protocol buffers to create and parse some of our messages (protobuf-net). This is so elegant, that I would like to use this same deserialization method to ...
2
votes
1answer
35 views

How to integrate ServiceStack service using protobuf with a non-ServiceStack client?

I would like to use ServiceStack on the server side, and I would like to use protobuf-net as the serialization system used by ServiceStack. However, some of the clients will not be using the ...
1
vote
1answer
52 views

How do you serialize/deserialize jagged/nested arrays with protobuf-net?

In his answer to For which scenarios is protobuf-net not appropriate? Marc mentions: jagged arrays / nested lists without intermediate types aren't OK - you can shim this by introducing an ...
1
vote
2answers
42 views

I cannot deserialize data previously serialized successfully

I was randomly typing 'fastest serializing c#' into Google and got protobuf.net as a result. I tried it and I think I can serialize properly yet since I can't deserilize, there is no way to tell now ...
2
votes
2answers
63 views

Is it possible to serialize/deserialize immutable types with protobuf-net on Windows Phone 7/8?

Is it possible to serialize/deserialize types with protobuf-net on Windows Phone 7/8? I've tried the code below, it seems Constructor skipping isn't supported (i.e. UseConstructor = false) so I ...
1
vote
1answer
29 views

How to clone integer with protobuf

i have a problem with cloning of integers, here is the dummy class i used [ProtoContract(ImplicitFields = ImplicitFields.AllFields)] public class Ac { private int _ao = -1; public int AO ...
1
vote
1answer
34 views

Protobuf-net IsPacked=true for user defined structures

Is it currently possible to use IsPacked=true for user defined structures? If not, then is it planned in the future? I'm getting the following exception when I tried to apply that attribute to a ...
1
vote
2answers
76 views

Using Protobuf-Net In Xamarin.iOS without full AOT

Is there any alternative to achieving serialising and deserialising of objects in Xamarin.iOS (Monotouch) using protobuf-net other than this method: ...
0
votes
0answers
35 views

NHibernate MemCached w/ Protobuf-net.Enyim — does it actually work?

I've used the following assemblies to hook up NHibernate 2nd-level caching with Enyim Memcached using Protobuf-net binary serializer: NHibernate NHibernate.Caches.EnyimMemcached Enyim.Caching ...
2
votes
1answer
43 views

DeepClone issues with protobuf-net - using enums

i have a class which is decorated with DataContract and ProtoContract(ImplicitFields = ImplicitFields.AllFields), one of the members and properties is Enum. i am trying to deepclone the object however ...
1
vote
2answers
133 views

C# protobuf-net serialized object to java

So I have a small problem: A message is sent using MQTT, it consists of a series of serialized objects using protobuf-net in C# (I can't modify this code, but I have access to the source). At the ...
2
votes
1answer
83 views

Protobuf-net serializer for eventstore 3.0

Can anyone point me to a protobuf-net serializer for EventStore 3.0? I'm having trouble I think mainly due to the serialization in event store 3 wrapping the event body and headers in an ...
0
votes
0answers
43 views

Deserialization of complex type causing System.StackOverflowException

I am trying to serialize/deserialize an object model which makes use of inheritance at the second level of the object graph. It serializes fine but when I try to deserialize I get an ugly stack ...
1
vote
1answer
136 views

serialize list of huge composite graphs using protobuf-net causing out-of-memory-exception

I am trying to serialize an object containing a list of very large composite object graphs (~200000 nodes or more) using Protobuf-net. Basically what I want to achieve is to save the complete object ...
0
votes
0answers
27 views

Options for serializing message envelope-type data with an unknown body

I have a message format that looks something like this: public class Message { public MessageHeader Header { get; set; } public object Body { get; set; } } I want to serialize this with ...
1
vote
1answer
65 views

Can Protobuf.Net Serialize a Dynamic Dictionary?

I have a dictionary that is Dynamic. public Dictionary<int, dynamic> Data = new Dictionary<int, dynamic>(); The dynamic portion will contain simple classes just consisting of 5-6 get/set ...
1
vote
1answer
44 views

Protobuf-net serialization of class that nests itself

I have a class that doesn't seem to be working with protobuf-net serialization, and it seems to be breaking at the point that my class has a reference to another instance of itself. Here is an ...
0
votes
0answers
42 views

Protobuf-net annotation in composite objects

Working with objects in protobuf-net, I create, with our code generator, simple POCOS with [ProtoContract] - [ProtoMember(..)]. What I should do with Composite objects, where every simple object ...
1
vote
2answers
100 views

Deserialize the result dynamically for Protobuf-net.dll

I am playing around with the C# protobuf implementation and I might have run into a problem. I want to deserialize the result dynamically. public byte[] ManageRequest(string argument1, params ...
1
vote
3answers
112 views

ServiceStack with Protobuf format

I am trying to use protobuf format in ServiceStack Webservices ( following the example at ServiceStack: REST with ProtoBuf by Steven Hollidge. I have added a Winform application to consume the ...
2
votes
0answers
62 views

ServiceStack Protobuf format webservice

I am a newbee to ServiceStack and am trying to work on the example ServiceStack: REST with ProtoBuf by Steven Hollidge. I have added a Winform application with one form ( one button and a label). The ...
0
votes
0answers
27 views

Workflow Services with Protobuf.Net Contracts

It seems the workflow run-time isn't able to deserialize the objects serialized with Protobuf.Net. Although Protobuf.Net is hooked to the endpoint behavior, i've noticed that in the Visual Studio ...
1
vote
1answer
29 views

UseImplicitZeroDefaults for generated protobuf classes

The default values for classes generated with protogen don't seem to be serialized when UseImplicitZeroDefaults = false. I have a small .proto file: package protobuf; option java_package = ...
2
votes
1answer
175 views

protobuf-net Serialize a nested list of objects using SerializeWithLengthPrefix

I'm currently trying to serialize the following data structure using protobuf-net: [ProtoContract] public class Recording { [ProtoMember(1)] public string Name; [ProtoMember(2)] ...
1
vote
1answer
42 views

Subtype fieldnumber order dependent in protobuf-net

I can see that protobuf-net seems to need to have deterministic ordering on the run type model. What's a good strategy to use without the need of having attributes on each class for the ordering. ...
1
vote
1answer
119 views

Getting “Type or namespace Serializable does not exist in the namespace…” error in wp8 app

So I'm pretty new to this protobuf-net stuff as well as wp8 development and I'm having an issue using the protogen generated .cs file in my project. Specifically this line of the file: ...
1
vote
1answer
113 views

How to Deserialize “Serialized Protobuffer” in c++ which is generated using C# protobuf-net

I have a struct [ProtoContract] public struct TenprintTemplateStructure { [ProtoMember(1)] public byte[] FeatureTenprint { get; set; } //Tenpritn NTemplate's NBuffer ...
1
vote
1answer
58 views

Possible order of evaluation difference in Mono vs. .NET

I have a Equals override on a object to check for value equality between two objects deserialized using a precompiled protobuf-net serialiser object. I have verified that the deserialisation occurs as ...
1
vote
1answer
62 views

How to append object to a file while serializing using c# protobuf-net?

I got a source code of Protobuf-net that serializes an object to a file. var person = new Person { Id = 12345, Name = "Fred", Address = new Address { Line1 = "Flat 1", ...

1 2 3 4 5 15