Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.
0
votes
1answer
26 views
Scala URLClassLoader ClassNotFoundException
I need to load some class at runtime out of a jar file, but every time I try, I get a ClassNotFoundException. I created the jar file using jar command. In addition, person class is generated from the ...
0
votes
1answer
10 views
Strange error when linking libprotobuf-lite library in XCode
I want to use the protobuf librabry in an IOS app, so I added libprotobuf-lite.a to my project and also set Header Search Paths to the protobuf src folder, but I'm getting a strange error in the ...
0
votes
0answers
16 views
PROTOBUF_GENERATE_CPP during creation of cmake files
The FindProtobuf module available in cmake offers the command PROTOBUF_GENERATE_CPP that calls protoc from within cmake. This command is normally executed at compilation time (when you run "make"). ...
0
votes
1answer
28 views
What's elegant way to send binary data serizlized with Google's Protocol Buffers in a ZMQ message
I need to send an object (serialized with GPB) on a ZMQ socket. Currently the code have an extra copy. How do I directly write serialized array into message_ts data?
ABT_CommunicationProtocol ...
1
vote
1answer
20 views
Many subclasses for one base class - protobuf performance
Right now I have an application where my iPhone app sends a request that is handled in .NET/C#, serialized to XML, and parsed on the app in objective-c. The current response class structure has one ...
0
votes
1answer
42 views
optimizing google protocol buffer.
I'm new to google's protocol buffers and looking into some insight. I have a large object that is serialized in java which I am de-serializing in python. The upstream tells me that the file is ...
1
vote
0answers
11 views
protobuffer file with many sub messages - one big file or imports?
We recently started using protobuffers in the company I work for, i was wondering what was the best practice regarding a message that holds other messages as fields.
Is it common to write everything ...
2
votes
1answer
26 views
Is protobuf-net suited for serializing arbitrary object/domain models?
I have been exploring the CQRS/DDD-principles and patterns for a while now and have started implementing a sample project where I have split my storage-model into a WriteModel and a ReadModel. The ...
2
votes
2answers
265 views
What are features of using Proguard in project with Protocol Buffers?
I have a project in where Google Protocol Buffers are used. Once I try to obfuscate it with ProGuard it seems that protobuf causes problem.
All my own classes I package into mybuildedclasses.jar. ...
5
votes
3answers
3k views
0
votes
0answers
25 views
Protocol Object
hi i am triyng to develop a distributed app, i am studiyng the use of protocol buffer for serialization matters, but i have a few question:
say i have a structure like that:
message Person {
...
0
votes
0answers
17 views
De-allocating Google Protocol Buffer resources
I have a class that is composed of a number of member variables which are pointers to the instances of google protocol buffer generated classes. These pointers are named mHead (header of the message), ...
0
votes
1answer
15 views
Error while adding protobuf dependency to maven
I am trying to add protobuf dependency to my maven project.
I have installed the protobuf jar file using
mvn install:install-file -Dpackaging=jar\
-DgeneratePom=true\
...
1
vote
1answer
43 views
Read jpeg file in Python, encode it into Unicode and put it into protobuf
I am transferring an image from a python backend to a c++ backend. I chose Google protobuf, with the following simple structure:
message data {
optional string image = 1;
}
I then use Python to ...
1
vote
1answer
24 views
Accessing field of Protobuf message of unknown type in Python
Let's say I have 2 Protobuf-Messages, A and B. Their overall structure is similar, but not identical. So we moved the shared stuff out into a separate message we called Common. This works beautifully.
...
1
vote
2answers
2k views
Generic Parsing of PB in java
Is it possible to parse PB in a generic fashion in java ? I looked into GeneratedMessage and could not find a way to parse any PB byte buffer into a GeneratedMessage. Essentially, i am trying to parse ...
3
votes
1answer
44 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 ...
5
votes
1answer
104 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
56 views
Protocol Buffers for VB6?
I can't seem to find any libraries for using Protocol Buffers in VB6?
Is my only option to use a wrapper C# library via COM Interop?
1
vote
0answers
70 views
Send protobuf(binary) data using rabbitmq stomp
I have create one example for rabbitmq stomp using protobuf.js on client side.
protobuf example link: https://github.com/dcodeIO/ProtoBuf.js
Send message file content:-
var Game = ...
3
votes
2answers
3k views
What are the alternatives to ZeroMQ for moving protocol buffer payloads around?
At the moment I have a solution that uses ZeroMQ to exchange protocol buffer payloads.
The protocol buffer method of serialization is bound to stay as it is, but I can replace ZMQ with a more ...
1
vote
3answers
31 views
is there something like protoc but cross-platform compiler instead
protoc.exe is built for windows. Every other distro, you have to compile protoc yourself to use it. We really want to drop something like protoc into our project but then have the hassle on anyone ...
3
votes
1answer
195 views
Protobuf with NodeJS on Windows
I would like to send simple TCP message to a device (Karotz) from NodeJS Script on Windows.
NodeJS correctly installed an working
TCP connection working
Here is my .proto file ...
0
votes
0answers
27 views
decorate objective classes with protobuf
like in .net version we can decorate classes with [ProtoContract] and [ProtoMember]
and there is no .proto file to complies and use the outputs in the project
is this possible in objective c version ...
0
votes
0answers
28 views
how to use protocolbuffers from static lib
i have followed this : http://code.google.com/p/metasyntactic/wiki/ProtocolBuffers
i was able to compile the Person.proto file
got the .h and .m files added to to my static lib project (libIOS)
...
1
vote
1answer
59 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
2answers
39 views
Differences between various protobuf implementations
What are the trade-offs, advantages and disadvantages of each of these implementations ? Are they any different at all ? What I want achieve is to store a vector of box'es, into a protobuf.
Impl 1 ...
1
vote
2answers
125 views
How to serialize .Net Exceptions using Protobuf-Net?
Can anyone give me an example or point me to a resource on how to use Protobuf-Net to serialize/deserialize some of the bulit-in system classes? Specifically I'm just trying to serialize/deserialize ...
0
votes
3answers
4k views
Google protobuf in Linux
I'm working with protobuf and Linux. Where is it's compiler protoc. I've downloaded package from main site, compiled and installed it successfully but I can't find protoc to build my own format file. ...
3
votes
4answers
2k views
Using Protocol Buffers to send icons/small images
I have a simple question about std::string and google's protocol buffers library.
I have defined a message like so:
message Source
{
required string Name = 1;
required uint32 Id = 2;
...
2
votes
3answers
472 views
Does Avro schema evolution require access to both old and new schemas?
If I serialize an object using a schema version 1, and later update the schema to version 2 (say by adding a field) - am I required to use schema version 1 when later deserializing the object? Ideally ...
3
votes
1answer
158 views
Protocol buffer and OO design
I'm using protocol buffer as a wire data-format in a client-server architecture. Domain objects (java beans) will go through following life-cycle.
Used in client side business logic
Converted to ...
0
votes
1answer
31 views
Unable to get automake to build .proto files into .pb.cc files with google protocol buffers
I've been trying to get automake to automagically determine how to build .pb.cc and .pb.hh files from a google protocol buffers .proto description, but have had no luck.
I've tried using this post on ...
2
votes
1answer
59 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 ...
1
vote
1answer
31 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:
...
0
votes
2answers
33 views
Can Protobuf dynamically parse a field?
File my_protocol.proto:
Message MyProtocol {
required int32 protocolId = 1;
required **unknownType** protocolBody = 2;
}
I want to parse protocolBody according to protocolId.
For example,
...
18
votes
5answers
1k views
Generate Protobuf documentation?
Does anyone know of a good tool to generate Google Protobuf documentation using the .proto source files?
Markus
2
votes
1answer
939 views
Protocol buffer polymorphism
I have a C++ program that sends out various events, e.g. StatusEvent and DetectionEvent with different proto message definitions to a message service (currently Active MQ, via activemq-cpp APU). I ...
0
votes
3answers
194 views
Strange EXC_BAD_ACCESS in iOS App
I'm using MFMessageComposeViewController to send message in my view controller. Before importing Google Protobuf Lib, all the things works. But after importing the lib, I always get a EXC_BAD_ACCESS ...
0
votes
1answer
58 views
Is there a Protocol Buffers binding for Codegear C++ Builder 2007?
From my understanding reading this thread from several years ago, somebody once got Protocol Buffers working with Codegear C++ Builder 2007
...
0
votes
0answers
60 views
How python interpret message generated by erlang_protobuffs?
I try sending message encoded by erlang_protobuffs to python node, but how to interpret message via python protobuffers?
My code:
package test;
message book { required int32 book_id = 1; required ...
0
votes
2answers
590 views
Sending protocol buffers via REST
I am trying to implement protocol buffers for client/server using REST.
I am still a bit confused if I need to send protocol buffers request in byte format?
I mean, in my client code, do I need to ...
5
votes
1answer
214 views
Static method invocation via Method.invoke() gave me NPE
I'm dealing with Google Protobuf messages.
Since my needs are to set instance fields of an Object (some of them are Protobuff messages), I've wrote a function that retrieve via reflection the builder ...
0
votes
0answers
29 views
Writing to a Protobuf CodedOutputStream
I'm having issues writing to a CodedOutput Stream using the Objective-C port of Protobuf:
POPMessage_Builder* builder = [[POPMessage_Builder alloc] init];
[builder setPayload:@"Hello, ...
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
2answers
67 views
Please help me understand protocol buffers [closed]
I'm missing something with protobuffers. Here is some questions that I have that I'm having difficulties answering.
Is a .proto file enough to have get all the data out of? In the address book ...
1
vote
1answer
54 views
Linking protobuf library using GNU makefile on Linux
I know that the protobuf library must be linked using GNU makefile flags -lprotobuf -lpthread or maybe -l:libprotobuf.so -lpthread; however when I make with -Wl,--verbose I see the following output:
...
1
vote
1answer
110 views
Protobuf 2.5.0 bug?
I've migrated from google protobuf v. 2.4.1 to v. 2.5.0 (no other change).
I had a perfectly working client-server [android<>gae dev server] communication using 2.4.1.
Now with 2.5.0 it is broken.
...
-1
votes
1answer
44 views
How to close the socket from the server? [closed]
I was trying to do a rpc server client program using protobuf-rpc-pro library.I wanted to close the socket at the end. I could close the socket from the client side .I wanted to how to close the ...
