0
votes
2answers
46 views
Google Protocol Buffer repeated field C++
I have the below protocol buffer. Note that StockStatic is a repeated field.
message ServiceResponse
{
enum Type
{
REQUEST_FAILED = 1;
STOCK_STATIC_SNAPSHOT …
10
votes
1answer
233 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 …
1
vote
2answers
110 views
Google Go integration with Protocol Buffers?
After a quick look at the documentation, I immediately started to think about integration with existing languages and applications and was wondering whether support would be provid …
0
votes
1answer
104 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 …
4
votes
0answers
62 views
Android and Protocol Buffers
I am writing an Android application that would both store data and communicate with a server using protocol buffers. However, the stock implementation of protocol buffers compiled …
2
votes
4answers
157 views
Integrate Protocol Buffers into Maven2 build
I'm experimenting with Protocol Buffers in an existing, fairly vanilla Maven 2 project. Currently, I invoke a shell script every time I need to update my generated sources. This is …
0
votes
2answers
18 views
Using GPB, how do I make my wrapper classes stop accepting binary messages that aren’t meant for them?
I'm using Google Protocol Buffers to serialize some of my business objects (in a Java app). As recommended in the tutorials, I wrap the message builder in a class of my own that im …
1
vote
1answer
30 views
How to use google protocol buffers with java me?
i have designed a protocol using google protocol buffers and now want to write a java me client. but this implementation that i have found is severely restricted. it does not allow …
3
votes
2answers
60 views
What the best ways to use decimals and datetimes with protocol buffers?
I would like to find out what is the optimum way of storing some common data type that were not included in the list supported by protocol buffers.
datetime (seconds precision)
d …
0
votes
6answers
95 views
Which serializer is most forgiving for changes to the serialized types in .NET?
I noticed the XmlSerializer is more forgiving to adding new members, removing existing ones, etc to the serialized types.
When I did this with the BinaryFormatter, and tried to de …
1
vote
2answers
63 views
Using Protocol Buffers with Objective-C
Has anyone used Google's Protocol Buffers when developing applications in Objective-C?
Are there any current projects for compiling .proto files into Objective-C, all the Google d …
2
votes
1answer
129 views
Protocol Buffers Java RPC Stack
According to this Wikipedia entry:
"Protocol Buffers is very similar to Facebookâs Thrift protocol, except it does not include a concrete RPC stack to use for defined services. Si …
2
votes
4answers
349 views
Google Protocol Buffers and HTTP
Hello, I'm refactoring legacy C++ system to SOA using gSoap. We have some performance issues (very big XMLs) so my lead asked me to take a look at protocol buffers. I did, and it l …
2
votes
2answers
147 views
How do I get support for GPB in Eclipse?
I'm trying to use Google Protocol Buffers in my project and I'd like to have some tooling support from Eclipse. In particular, I want Eclipse to call protoc every time I make chang …
0
votes
2answers
85 views
Accessing a WCF-service using Java
I'm developing a web-service using WCF, which I want to access using a client written in Java. I will encode the messages using Protocol Buffers (with Marc Gravell's protobuf-net t …
