Tagged Questions
0
votes
1answer
28 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
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
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 ...
2
votes
3answers
47 views
How do I make Java protocol buffer types mutable? Protoc.exe doesn't generate setters?
How do I make Java protocol buffer types mutable?
Protoc.exe doesn't generate setters?
Basically I need to create an object then change a field value.
Thanks
0
votes
1answer
86 views
how to use external jars in Cloudera hadoop?
i have a cloudera hadoop version 4 installed on my cluster.
It comes packaged with google protobuffer jar version 2.4.
in my application code i use protobuffer classes compiled with protobuffer ...
0
votes
0answers
26 views
Simultaneous adapters showing multiple lists in android
Following is the android method which sets the adapter for 2 lists on the same page.
I am gettong only one item in each list although both the list have multiple items.
After debugging i found that ...
-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 ...
1
vote
1answer
56 views
How to get protobuf for Java Object by given message type name and raw bytes?
I have message type name in string and raw bytes. how to create java object by these meterials?
b.proto
pakage foo;
message Bar {
required int32 id = 1;
required string name = 2;
}
TestMain.java
...
3
votes
1answer
110 views
error with serialization with protobuf
I'm trying to serialize a structure with protobuf. after many hours trying to figure out what I'm doing wrong I decided to test the google's example and it didn't worked as well
I have the following ...
1
vote
2answers
145 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 ...
3
votes
1answer
158 views
Override protocol buffers default behavior of throwing NPE when setting null to fields
I use protocol buffers maven plugin to compile .proto files. I really like protocol buffers except for one thing that it doesn't accepts nulls as default or no value. Instead it throws NPE whenever ...
0
votes
3answers
357 views
Where to find protobuf.jar for using Google protocol buffers in Java?
I downloaded protobuf-2.5.0.tar.gz, extracted it, did the usual ./configure, make, make check, and make install. However, the file protobuf.jar which seems to be needed for using protocol buffers in ...
3
votes
1answer
142 views
protobuf RPC structure (embedded ARM)
I need to use protobuf in embeded arm system. Need the support of pure C. The project will use a client-server architecture (C server with the java, Python clients). The project requires to consider ...
0
votes
1answer
94 views
messageReceived (netty) not called
my source
TestMessage - is my protobuf object
@Override
public ChannelPipeline getPipeline() {
ChannelPipeline next = Channels.pipeline();
...
1
vote
1answer
726 views
Maven & Protobuf compile error: Cannot find symbol in package com.google.protobuf
I'm new to Linux and Protobuf.. I need help.
I'm trying to "mvn package" a project that contains many ".proto" files, and a pom.xml file of course...
I'm working on Ubuntu
...
1
vote
1answer
135 views
how use protocol buffers?
I watched a lot of tutorials, but I can not understand how to use protocol buffers
Why "message User "? why not "class User "? and how Eclipse has created such a message?
and why name = 2 ? not name ...
3
votes
2answers
106 views
Protocol Buffer Challenge
I am developing an application that uses the protocol buffer as a serializer . My application will be a client to a server. The requirement is that before sending the protobuf data I have to prepend ...
5
votes
2answers
84 views
How do I convert MySQL unsigned ints to Protocol Buffer uint32s in Java?
I'm working on converting a bunch of old tab-separated MySQL database dump files into Protocol Buffers and have run into a snag. The MySQL table includes a field of type int(11) unsigned, which I have ...
1
vote
1answer
71 views
problems building the protobuf example apps
I'm new to protobufs and was trying to learn more about using them. I've downloaded the protobuf packaged from here. There is a README.txt file inside the examples folder of the archive which gives ...
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
89 views
How to build a protocol buffer message from a json using Gson?
I've been trying to generate protocol buffer messages from a json string using gson. Does anyone know how if it is possible to do it?
I have already tried:
Gson gson = new Gson();
Type type = new ...
2
votes
1answer
76 views
fail to read message on the client end using C
I use protocol buffers to make data structure and on the server end I write the following code to send a message using Java while I receive the message on the client end using C.
Java Server:
...
1
vote
1answer
231 views
Trying to send and receive message using protobuf in java,but got error: Protocol message contained an invalid tag (zero)
The problem happened at server end, parseDelimitedFrom() calling.
Client End:
C2SGainCard.Builder s = C2SGainCard.newBuilder();
C2SGainCard c2s = s.build();
GameRequest.Builder ...
1
vote
1answer
105 views
How can I read JSON data from C++ through Java using a piqi definition
We use a 3rd party REST web service which defines their json API using piqi schemas. Our current architecture needs this data to be read through a java client and transferred to a c++ binary. ...
1
vote
3answers
211 views
When using google protocol buffers to transfer String character,got messy code
In debug view:like follow
here is the code which encodes into messy string...
((S2CEnterCollection)objS2c).toByteString().toStringUtf8();
���"default(
���"default(
���"default(
...
0
votes
1answer
91 views
In Java, how can I HttpPost only the contents of a protocol buffer?
I've tried using a ByteArrayEntity, as below, but this sends extra bytes that aren't in the protocol buffer itself. Is there an Entity which just POSTs the contents?
byte [] info;
...
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. ...
0
votes
4answers
133 views
loading (deserializing) _quickly_ 2MB of Data in Android on Application Startup
I need to load around 2MB of data quickly on startup of my Android application.
I really need all this data in memory, so something like SQLite etc. is not an alternative.
The data consists of about ...
0
votes
0answers
33 views
Why does protocol buffers deserialization get faster if performed multiple times? [duplicate]
Possible Duplicate:
How do I write a correct micro-benchmark in Java?
While testing the performance of protocol buffers, I've realized that if I perform the same deserialization multiple ...
1
vote
2answers
344 views
Client rendering JSON vs GPB (Protocol Buffers) [closed]
I have read a lot about the pros and cons of Protocol Buffers (GPB) and JSON.
I have a service that will be providing the output, in one of these two formats.
So if the client using the service is ...
1
vote
2answers
374 views
google's protocol buffer from c# to java - Protocol message tag had invalid wire type
I am creating a stream in C# and trying to read it in java, but I receive the error: "Protocol message tag had invalid wire type." when i read it in my java code the object created in c#.
Details:
I ...
1
vote
1answer
328 views
Protocol Buffers with Android & Eclipse : NoClassDefFoundError
I want to send some data via an HttpClient and am trying to use Protocol Buffers.
Descriptor have been created, as well as my .proto file compiled to get the associated .java file. I call this class ...
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;
}
...
4
votes
2answers
213 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 ...
0
votes
1answer
91 views
Does protobuf (protocol buffers) allow custom types?
i want use protobuf in Java and Flash. All of them has protobuf implementation.
I want to create the follow structure:
class UserDetails
{
int age;
int weight;
int lenght;
}
class User
{
...
0
votes
0answers
212 views
Install Protocol Buffers on Windows
I am unable to find clear instructions to install Google Protocol Buffers (including compiler) on Windows x64 platform.
I went through the instructions README file for compiler and source:
For ...
5
votes
1answer
139 views
Java Protobuf in Android - NoClassDefFoundError
I'm building an Android app in ADT v21.0.0. This application needs to use a protobuf library I've compiled into a jar.
By putting this jar as well as protobuf-java-2.4.1.jar in my libs/ folder, ...
1
vote
1answer
95 views
Has anyone tried to return a protobuf object from C++ to Java through JNI?
I have a Java code, which calls into native C++ code through JNI. Today the result produced by the C++ code is returned as an XML string.
I would like to replace it with a Protocol Buffers object.
...
0
votes
1answer
81 views
Building a Java application with a Google Protocol Buffer JAR file
I have a myprotofile.proto file that looks like this
package PBPackage;
message SomeMessage {
required double someItem = 1;
}
I build it like this (I'm on linux)
...
0
votes
0answers
91 views
Protocol Buffer serialization of csv file - Java
Hi i want to serialize data using Protocol Buffer.
Serialize the CSV data read using protocol buffers:
i.e. 1.Read the CSV.
2.Create a proto object from CSV data read.
3. ...
0
votes
0answers
34 views
why directly subclass a generated service class is not pure when using google protocol buffers?
From google's document
https://developers.google.com/protocol-buffers/docs/reference/java-generated?hl=zh-CN
they said
To recap, when implementing your own service, you have two options:
...
3
votes
1answer
74 views
Load protocol buffer objects into a collection from a file
If I have a file with many protocol buffers messages saved in one after each other, how do I read that file back to a collection in Java?
1
vote
2answers
107 views
Importing protocol buffer definitions between Maven projects
I currently manage a few separate Maven projects in which I use Protobufs as a serialization format and over the wire. I am using David Trott's maven-protoc plugin to generate the code at compile ...
1
vote
3answers
443 views
Google protocol buffers-Sending a message form C# client to a java Server
The Client sends a 1481 bytes array.
The server can read all the 1481 bytes message without any problems but by parsing the given messsage from the received binary array i get this exeption:
...
2
votes
1answer
76 views
Google ProtocolBuffer deserialization type
I would like know how can I retrieve the type of a protobuf loaded from the bytes.
Ex:
Worklist work = Worklist.newBuilder().build();
byte[] msg = work.toByteArray();
Basically I need to find a ...
0
votes
1answer
120 views
Protobuf / Protocol Buffers - IndexOutOfBoundsException
I am developing a Client-Server-application which uses Google Protocol Buffers.
Unfortunatelly when I am building the protocol buffer response on the server side using the builder pattern I get a ...
1
vote
2answers
118 views
How can I have Java trigger C++ programs and vice versa when data is written to protocol buffers?
Long story short, I have a Java process that reads and writes data to/from a process. I have a C++ program that takes the data, processes it and then needs to pass it back to Java so that Java can ...
1
vote
2answers
190 views
Error in java while wrapping protocol buffer inside json generated by jackson?
I'm sending and receiving HTTP post requests by doing the following:
FooJson fooJson = new FooJson();
fooJson.setName("Bob");
FooProto.Builder fooProto = FooProto.newBuilder(); // google protobuf
...
0
votes
1answer
81 views
Handling IOExceptions from the Google Protocol Buffer library
I have some code that tries to read in a Google Protocol Buffer message from a socket in Java. However, the mergeDelimitedFrom() method can throw an IOException if it reads in invalid data or if the ...
2
votes
2answers
271 views
still not find package, after 'mvn install'
I'm trying to use Google protocol buffer for Java(I'm a newbie about Java, just trying).
First of all, I'm using OSX and I've installed protocol buffer with brew install protobuf command.
protoc ...