Tagged Questions
1
vote
2answers
103 views
Preserving proto comments when generating C# with protobuf-net
We are using protobuf-net to handle our Protocol Buffer needs in a C# application. Since we share our .proto files with other, non-managed applications, we are generating our code from the .proto ...
0
votes
0answers
55 views
Protobuf-net: Using Hidden Members does not work
Using types with hidden fields leads to an "Unable to determine member" Exception
(V2 via RuntimeTypeModel without any attributes).
Removing the Length check in this line in MetaType.cs solves the ...
1
vote
2answers
103 views
Proto Serializing hierarchy type with Reflection
when trying to serialize a hierarchy type with proto serializer that has been loaded by reflection it seems to have some weird behavior and does not really seem to work.
here is the code:
...
1
vote
1answer
127 views
Serialization of base class properties with protobuf-net
We have a somewhat complex hierarchy of classes in our entity model. We have a base class BaseEntity for all entities, then some "level 2" classes derived from BaseEntity, some "level 3" classes ...
6
votes
2answers
563 views
Protobuf-net is incompatible with official google Protobuf for C++ (message encoding)
We had some (lots of) classes in .NET. We used protobuf-net to mark them up, and generate .proto wrappers for C++ code side via google original library.
So I have a message (C++ DebugString() on some ...
1
vote
2answers
45 views
Serialization for data files in .Net and other applications
I read a lot of discussion about serialization technologies that are used over the wire- xml, json, proto buf, Contract serializer etc. I'm curious about any discussions on what serialization tech ...
2
votes
2answers
114 views
protobuf-net into .proto generates enum conflicts?
In C# we have namespaces in .proto we get from protobuf-net we do not get any namespaces. So the question is how to make protobuf-net generate (and use inside) .proto files with namespacs/packages.
...
4
votes
5answers
353 views
Getting one repeated field from a file instead of needing to load the whole file
Lets say I have a .proto structured (simplified) like this
Message DataItem {
required string name = 1;
required int32 value = 2;
}
Message DataItemStream {
repeated DataItem items = 1;
}
...
1
vote
1answer
103 views
How to generate .proto files from Protocol Buffers .NET code?
So having our classes with attributes in folder how to generate .proto markup files out from them (to get for example C++ code)?
2
votes
1answer
123 views
Protocol Buffers .NET inheritance
I have data in a Protocol Buffers format which can be described as follows
message Sections {
repeated Section sections = 1;
}
message Section {
required uint32 type = 1;
required bytes ...
1
vote
1answer
910 views
Protobuf-net serialization on sockets. No parameterless constructor found ProtoException
I have created an application where interprocess communication is done using sockets. The procedure starts when a client connects with the server that I created and sends a serialized message. This ...
5
votes
1answer
134 views
Weird thing happen while deserializing boolean data member with inline initialization
when serializing a type that has a boolean member that is inline intialized to true - I always get the value as true on deserialization of the object (obviously, the problem is when the actual value ...
2
votes
0answers
142 views
Rebuilding the AddressBook example in protobuf-csharp-port 2.4.1.473
I have sucessfully built the example AddressBook project in protobuf-csharp-port-2.4.1.473-source and have even got it to work with the C++ example from the protobuf-2.4.1-win32. However, when I try ...
2
votes
1answer
193 views
Using protocol buffers to interface c# and c++
I've got a large solution written in c# that uses protobuf-net library for communication. I'm looking to write a c++ program to talk to the existing code, and I'm close to being able to see how to do ...
1
vote
2answers
303 views
Protobuf-net and .proto file?
I'm going to use protobuf-net library with my WCF services. Clients is Java-Android and I work with proto files on that side.
Should I manually code classes on .NET side or protobuf-net somehow ...
3
votes
1answer
418 views
Adding protobuf-net to my WCF Rest service
Is there any canonical straight way of enabling protobuf-net serialization on .NET 4 WCF? I tried to simplify code to the point where it can be easy to build on:
Here is my service code:
...
1
vote
1answer
111 views
Are there good reasons to use .proto files on a single-platform system?
We're developing a few services that communicate with each other via Protocol Buffers. All the services are written on .NET. I don’t foresee migrating them off of .NET. I don’t foresee using the ...
1
vote
1answer
278 views
How to use protobuf-net with classes generated through ASP.NET Web Reference while avoiding code duplication?
I have a server-client application in which I can modify both codebases. The client communicates with the server through numerous web services and I share some of the classes defined on the server ...
1
vote
1answer
344 views
Serialize hashtable using Protocol Buffers (.NET)
I am trying to serialize/deserialize my custom class which contains hashtable property using protobuf-net v2.
[ProtoContract]
public class MyClass
{
[ProtoMember(1)]
...
0
votes
1answer
234 views
How to talk to a Netty + Protobuf Server from .net client?
I have developed a Netty Server and it's also very easy to develop a Java client by following netty's sample projects via pure socket channel + Protobuf binary protocol.
But I can't get a reference ...
1
vote
1answer
192 views
Use protobuf on android to send data to WCF Service (using protobuf.net)
I need to send a object containing 256kb to 18Mb of data from an android device to a WCF service.
I just found out about protobuf.net and agree this is the way to go.
Most examples I find showing use ...
1
vote
1answer
254 views
ProtoBuf type casting issue
I use ProtoBuf to serialize class. Unfortunately Serializer.Deserialize method gives error "Type is not expected, and no contract can be inferred: System.Object". Any hint how to solve this.
private ...
3
votes
2answers
272 views
is protocol buffers suitable for long term serialization?
I am considering various ways of storing deltas on objects for long periods of time (30 years would be the common case). One option is to have a single delta table storing changes for every object. ...
2
votes
1answer
867 views
Protobuf-net creating typemodel with interface and abstract baseclass
I'm trying to serialize a model using the great Protobuf-NET. I cannot use the attributes (objects are unknown at compile-time),so I constructed a TypeModel.
My object model consist of a class ...
1
vote
1answer
413 views
protobuf-net Inheritance & Field Numbers
I am trying to construct a serialisation system for our application that must be able to handle inheritance. To further complicate matters the application is extensible so types might are very ...
5
votes
2answers
1k views
Protocol buffers detect type from raw message
Is it possible to detect the type of a raw protocol buffer message (in byte[])
I have a situation where an endpoint can receive different messages and I need to be able to detect the type before I ...
1
vote
2answers
178 views
Protobuf data serializer
this dataserializer is great for performance. but I keep getting stuck on datacolumns that has datatype of System.Object causing the serializer to throw an exception:Cannot serialize data column of ...
1
vote
1answer
282 views
protobuf-net or protocol buffer services from c# to python and other lang
I have been looking at protobuf-net recently and protocol buffers and so far it seems quite impressive. What i am wondering about is the service side of things. If i have understood the google ...
3
votes
1answer
1k views
Inheritance in Protobuf-net: ProtoInclude and compatibility
As described in this post, we can use ProtoInclude attribute to manage class hierarchy serialization. And if we use just protobuf-net, it works quite fine both directions. But problem occurs when we ...
2
votes
1answer
162 views
Inheritance and known type issue
I'm trying to use protobuf .net to serialize an instance of a class which is inherited from a base class. When trying to serialize\deserialize i'm getting an exception about "type not expected". As I ...
4
votes
1answer
763 views
Alternative to protobuf-net - size and time efficient serializer to work with objects graph
Google protobuf is great protocol to serialize objects efficient, but it only supports serialization of trees, not graphs (lack of full Object Reference Tracking).
There are few implementation of ...
2
votes
1answer
719 views
Serialize protocol buffer file into xml/text format
I am using protocol buffer in .net http://code.google.com/p/protobuf-net/.
I installed the visual studio support version, which I can just write proto file in project and it generates csharp class ...
1
vote
1answer
198 views
protobuf-net-VS10.msi and V2 compatible?
I am using protobuf-net in my .net project to use protocol buffer. The project is at http://code.google.com/p/protobuf-net/.
Currently I installed protobuf-net-VS10.msi and it works fine in vs.net ...
5
votes
1answer
345 views
Limiting protobuf-net inheritance “tree”
Going on with my quest to bend protobuf-net to my own will..
I've seen a few questions around SO on how to add sub-classes dynamically
for the serializer to be able to encode the sub-class.., like ...
1
vote
1answer
74 views
Why does WCF make extra calls?
I have a client that makes a call to a WCF service. When I make the first call to the service, there are 2 extra calls (visible via Fiddler).
The action of the first one is s:mustUnderstand
The ...
1
vote
1answer
253 views
protobuf-net protogen with umbrella classes
is there away of getting protobuf-net protogen to wrap an existing proto in an umbrella class.
Similar to in Jon Skeet's proto-csharp implementation:
protogen -namespace=companyx.employee ...
2
votes
1answer
125 views
Will protobuff-net work with protoc 2.4.1
We have a java backend surfacing proto objects using the google implementation. We now want to use these objects in .net on the client side and manipulate them. The issue is that we don't want rely on ...
4
votes
2answers
594 views
Binary object graph serialization
I'm looking for advice on serialization in a .net app. The app is a desktop/thick client app and the serialization represents the persisted document format. The requirements for the serializer is
...
3
votes
1answer
626 views
Protobuf Inheritance and Generics
I am attempting to use ProtoBuf net to serialize an object tree with the classes in the following format:
[ProtoContract]
class MySpecialCollectionList<T> : ...
4
votes
4answers
613 views
How to implement VARIANT in Protobuf
As part of my protobuf protocol I require the ability to send data of a dynamic type, a little bit like VARIANT. Roughly I require the data to be an integer, string, boolean or "other" where "other" ...
1
vote
1answer
398 views
protocol buffer message to and from an XPathDocument
I am trying to serialize and deserialize a protocol buffer message to and from an XPathDocument but it fails with an exception:
ProtoBuf.ProtoException: Mismatched group tags detected in message
How ...
6
votes
2answers
693 views
Convert XSDs to Protos
I have a set of services coupled with whole bunch of XSDs. Clients that use my service use XML and in the future will use protobufs. Is there a tool out there that will convert my XSDs into proto ...
7
votes
2answers
847 views
Google Protocol Buffers Serialization hangs writing 1GB+ data
I am serializing a large data set using protocol buffer serialization. When my data set contains 400000 custom objects of combined size around 1 GB, serialization returns in 3~4 seconds. But when my ...
0
votes
1answer
578 views
dot net programing udp buffersize error
I am trying to send an image (byte[]) over a UDP broadcast socket. I
get the following error stating that my message is bigger than the
internal message buffer.
An unhandled exception of type ...
1
vote
2answers
523 views
Self referencing fields in protobuf messages
Is it ok to have message like this?
message A {
required int64 some_number = 1;
// .... some more fields
optional A sub_a = 123;
}
The reason is my current protocol stores set of A directly, ...
1
vote
2answers
331 views
protobuf-net bare minimum to encode strings and numbers
I've looked through both protobuf-net by Marc Gravell and Jon Skeet however they seem to do a lot more than what I'm looking for, plus I'm having issues running their code (getting System & ...
7
votes
1answer
524 views
Difference in .NET Protocol Buffer libraries
At the moment, there are two proto buf libraries for .NET:
http://code.google.com/p/protobuf-csharp-port/ With Jon Skeet as the owner
http://code.google.com/p/protobuf-net/ with Marc Gravell as the ...
3
votes
2answers
965 views
protobuf.net Unexpected subtype
I'm encountering this Exception in my project using Protobuf.net:
InvalidOperationException "Unexpected sub-type: foo"
I have a class which I'm sending which looks like this:
class message
{
...
4
votes
2answers
741 views
protobuf-csharp-port
I'm using Jon Skeet's (excellent) port of Google's Protocol Buffers to C#/.Net.
For practice, I have written a dummy Instant Messenger app that sends some messages down a socket. I have a message ...
2
votes
1answer
624 views
protobuf-net and deriving from generic collections
I am having trouble figuring out how to get protobuf-net to serialize an object that derives from List< T >. I have tried adding the ProtoInclude attribute but I receive an ProtoBuf.ProtoException ...

