Tagged Questions
4
votes
2answers
208 views
protobuf 2.4.1 - sending data from c++ to Java
I'm trying to exchange messages between c++ and java and vice-versa without success.
I've defined two messages (1 to be sent from c++ to java and another to be sent the other way around) with union ...
1
vote
1answer
183 views
Whitespace in Protocol Buffer Serialization across HTTP with Qt
I am trying to send a Google Protocol Buffer serialized string across an HTTP connection and receive it back ( unmodified ) where I will deserialize it. My problem seems to be with the ...
2
votes
1answer
324 views
Generated Protobuf code crashes application
I'm trying to implement save-file for application, by using Protocol Buffers by Google.
Preparation
A simple test .proto file has been created to test functionality:
message LessonFile {
...
0
votes
2answers
255 views
qdbus and marshalling of custom types
I'd like to send a custom c++ class through the Qt DBUS API. I've created the class from the .proto file using the protoc compiler and added them to my project in QtCreator. Now I want to verify that ...
2
votes
1answer
412 views
Qt QByteArray size
I need to add to a QByteArray 4 bytes, as frame. (struct ([4 bytes][message]))
I do:
QByteArray byteArray;
QByteArray byteArray2(man.SerializeAsString().c_str(), man.ByteSize()); // 31 byte
...
4
votes
4answers
1k views
How to visualize data from google protocol buffer?
I would like to store data using google protocol buffers (another serialized format would work, too), and then have an UI to browse that data. Is there a C++ framework/API that would allow me to do ...
1
vote
2answers
692 views
Google protobuf and symbian
I need to transfer data between c++ and java. I have decided to use Google's protobuf.
I made installation process and I got:
bin > protoc.exe
lib > libprotobuf.a
libprotobuf.la
libprotobuf-lite.a
...
7
votes
3answers
3k views
Qt + protobuf, types?
I would like to dip into Google's protocol buffers in Qt development, but I am having trouble figuring out how to incorporate them best.
Ultimately, I want to send with QUdpSocket and QTcpSocket ...
0
votes
1answer
943 views
Qt + Google Protocol Buffers, Trouble linking libraries
Hopefully this is an easy question:
I am building an application with Qt and would like to use Google's Protocol Buffers. I have downloaded and installed the protobuf source, now I want to link ...
4
votes
1answer
523 views
linking a .proto file using qmake
I have 4 files
message.proto
udp.h
udp.cpp
main.cpp
message.proto is a google protocol buffer file. I am trying to write a protocol buffer and send and receive data using UDP. udp.h and udp.cpp are ...