MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.

learn more… | top users | synonyms

0
votes
0answers
9 views

Downloading and installing “msgpack” PECL package on windows

I tried install the msgpack pecl extension on my windows machine by using the command pecl install msgpack-0.5.5, but it failed with the following message: ERROR: The DSP msgpack.dsp does not exist. ...
0
votes
0answers
21 views

Runnning msgpack in .NET Micro Framework

EDIT: solved: https://github.com/msgpack/msgpack-cli/issues/5 I'm trying to run msgpack-cli on .NET Micro Framework but MsgPack.Serialization APIs depend on dynamic code generation via ...
0
votes
1answer
38 views

How to msgpack a user-defined C++ class with POD-arrays?

How it is possible to provide all three functions: msgpack_pack, msgpack_unpack and msgpack_object (also, what are meanings of them, exactly?) for a user-defined C++ class (in the same way ...
1
vote
1answer
37 views

How can I extend jQuery's $.ajax to support new content types?

I would like to be able to send and receive MessagePack-formatted data with jQuery's $.ajax(). How does one extend $.ajax() to support new Content-Type formats?
4
votes
1answer
103 views

ServiceStack MsgPackServiceClient fails when fetching data but JsonServiceClient works

I'm playing around with ServiceStack and doing baby steps trying to understand the technology. I've got a very simple setup (complete solution is available for download): Stand alone AppHost using ...
0
votes
1answer
96 views

Sending a vector through zeromq with msgpack

I can't seem to send a vector of a struct that I serialized with msgpack through ZeroMQ. It's a vector of this struct: struct MyData { MyData() : id(0), x(0), y(0), a(0) {} MyData(const Obj ...
1
vote
3answers
193 views

Which is the best way to compress json to store in a memory based store like redis or memcache?

Requirement : Python objects with 2-3 levels of nesting containing basic datypes like integers,strings, lists, and dicts. ( no dates etc), needs to be stored as json in redis against a key. What are ...
0
votes
0answers
21 views

Using msgpack-rpc with Tornado web server

I'm trying to send messages from a client to a Tornado server asynchronously with msgpack-rpc. I used this question to add the msgpack stuff to Tornado: Sockjs-tornado and rpc but I can't seem to ...
0
votes
1answer
127 views

How do I unpack and extract data properly using msgpack-c?

I'm currently trying to use msgpack in a project written in C. I'm using msgpack for the purpose of serializing the contents of a struct, which is then to be sent over the network, and deserialized ...
0
votes
1answer
110 views

VerificationException “Operation could destabilize runtime” Error with MsgPack and .net Error

Encountered VerificationException "Operation could destabilize runtime" error using MsgPack to serialize some F# types. The compiler also suggests that conflicting class libraries may be loaded, but ...
0
votes
0answers
62 views

MessagePack (msgpack) serialization of enum inconsistency (?)

I'm trying to MsgPack serialize a class with some enum fields on Java side, then pass it to .NET side using messaging and then deserialize it on .NET side. And I've found, what I think is, a terrible ...
0
votes
1answer
69 views

Java msgpack class with floats crashes

I have a very simple java class that represents a 2d vector. Yet when I run the code to serialize it to message pack, it creates a runtime error. Serializing this class should be really basic ...
0
votes
0answers
66 views

Using MSGPACK_DEFINE without changing class declarations

Is there a way in MsgPack C++ to use MSGPACK_DEFINE without altering the class members? We'd like to keep message pack stuff out of the headers, and only use it internally in a library. It seems like ...
1
vote
0answers
96 views

MsgPack third-party objects serialization

I'm trying to serialize object with MsgPack (Java). This object (among other things) contains JodaTime's LocalDate for representing - well - date. MsgPack is not able to deserialize my message, coming ...
3
votes
1answer
120 views

Deserialize a type containing a Dictionary property using ServiceStack JsonSerializer

The code snippet below shows two ways I could achieve this. The first is using MsgPack and the second test is using ServiceStack's JSONSerializer. The second is more favourable because the ...
2
votes
1answer
187 views

using MsgPack with Servicestack: how do I do KnownType?

I'm attempting to support the MessagePack protocol in my current Servicestack implementation. I need it to support (de)serializing a list of ISegment defined like this: ...
1
vote
1answer
250 views

MessagePack slower than native node.js JSON

I just installed node-msgpack and tested it against native JSON. MessagePack is much slower. Anyone know why? Using the authors' own benchmark... node ~/node_modules/msgpack/bench.js msgpack pack: ...
0
votes
0answers
86 views

messagepack parsing on java and android

I try to implement game on android. I should send and receive messages packed in msgpack + base64 via websocket. I can pack and send to server, it is no problem. But I should receive messages with ...
1
vote
0answers
156 views

msgpack deserialize c++

When I parse from the buffer, I have to know,what the exact class type(myclass) of the buffer is. So I cant handle all the buffer parse in an uniform way. I have to distinguish every class type(can ...
3
votes
1answer
362 views

Encoding MessagePack objects containing Node.js Buffers

I'm using node-msgpack to encode and decode messages passed around between machines. One thing I'd like to be able to do is wrap raw Buffer data in an object and encode that with Messagepack. msgpack ...
0
votes
0answers
194 views

msgpack: messaging between C++ and java

I have two applications (one written in C++ and other in Java). I use msgpack to pack the C++ class to the binary format. Then I send this to the Java side. I wonder if I unpack this message in java ...
0
votes
1answer
95 views

msgpack: pack the class in member-function

I'm pretty new to "msgpack". I'm trying to pack the user-defined class: MyClass::Pack() { msgpack::sbuffer sbuf; msgpack::pack(sbuf, this); } But compiler (VC 9.0) says me error C2228: ...
1
vote
1answer
139 views

What is the simplest way to serialize a complex object layer in .NET for caching?

Trying to introduce caching/state-persisting into the middle tier of an application with a complex object layer (and a WCF service layer, not the focus here) running under IIS. Have settled on ...
2
votes
1answer
201 views

Sockjs-tornado and rpc

I'm trying to add a sockjs-tornado server to my site, and all worked fine until I decided to connect it to my other apps via MsgPack (using msgpack-rpc-python). And now works sockjs server either RPC ...
0
votes
1answer
72 views

Does an unpacked msgpack_object depend on the buffer from which it is unpacked?

Based on the bizarre behaviour I'm seeing, I'm guessing that the following code is not valid. My question is: does the msgpack_object created below depend on the msgpack_sbuffer? That is, is the ...
0
votes
1answer
114 views

Why are MsgPack keys of type msgpack_object?

In the C API for MsgPack, why are keys (for example the key field of msgpack_object_kv) of type msgpack_object? https://github.com/msgpack/msgpack-c/blob/master/src/msgpack/object.h Why aren't they ...
0
votes
1answer
166 views

BSON to Messagepack

The problem that I am facing is that BSON comes with ObjectId and Timestamp which are not supported in Messagepack and it aint possible to define a custom serializer for Messagepack (at least as far ...
2
votes
2answers
189 views

MessagePack Serializing object error on Android

use messagepack on android, the can serialize/deserialize a class, but not absolutely right . the simple test class: @Message public class Account { public String Code; public int ...
1
vote
1answer
801 views

MsgPack for compressing json data, why not using gzip/deflate?

I heard something about MsgPack that can be used for compressing json messages, but I have a question about that, why not simply using Gzip/Deflate instead of MsgPack? I think it's so better to ...
0
votes
1answer
164 views

What is a MsgPack 'zone'

I have seen references to 'zone' in the MsgPack C headers, but can find no documentation on what it is or what it's for. What is it? Furthermore, where's the function-by-function documentation for ...
1
vote
1answer
302 views

Storing a MessagePacked hash in Redis

I'm having a problem storing a MessagePacked hash in Redis. I've pasted a test case below. When pulling out the packed data from Redis and unpacking it, the hash is slightly corrupted. This appears ...
0
votes
1answer
200 views

Serializing object using messagepack and as3

This is a vary simple question, but can't find any docs on it. I have a simple class: public class User { public var name:String; public var age:int; } I would like to serialize it using ...
0
votes
1answer
324 views

MessagePack C API

In looking at the C API for MessagePack, there are a number of functions to appropriately serialize (pack) the data according to type: msgpack_pack_uint8, msgpack_pack_int32, ... There doesn't seem ...
0
votes
1answer
173 views

MessagePack template lookup causing stuck threads in WebLogic?

We're using MessagePack 0.6.6 for Java in Grails 2.0 on WebLogic 11g (10.3) to serialize string data... public void serialize(Object object, OutputStream outputStream) throws IOException { ...
0
votes
1answer
32 views

create debug version of python package python-msgpack for Ubuntu

I need a version of messagepack that i can use with python2.7-dbg. How would I go about creating one? for reference I've asked via an issue on github https://github.com/msgpack/msgpack-python and ...
2
votes
2answers
221 views

can't decode encrypted string in python from messagepack (Ruby openssl)

I'm having trouble unencoding some data I get from a socket connection through messagepack, and consequentially unencrypting it. I get the string in from a Ruby on Rails web application in UTF-8 and ...
0
votes
2answers
738 views

msgpack C++ implementation: How to pack binary data?

I am making use of C++ msgpack implementation. I have hit a roadblock as to how to pack binary data. In terms of binary data I have a buffer of the following type: unsigned char* data; The data ...
2
votes
1answer
232 views

How to remove a compiler option that python disutils includes (language code=pic32 not recognized)

I'm trying to compile the msgpack-python python module with gcc (v4.7) on solaris 10. The python installed is 2.6.8. Distutils is automatically picking up a incorrect compiler option (-xcode=pic32) ...
0
votes
2answers
222 views

Building msgpack-python on Solaris 10 - Use of <stdbool.h> is valid only in a c99 compilation environment

I'm trying to build the python module msgpack-python on Solaris with the Sun compiler and am getting this error during the python ./setup.py build: /opt/SUNWspro/bin/cc -DNDEBUG -O -xO3 -m32 ...
0
votes
0answers
317 views

Msgpack deserializaion not so zero-copy?

I look into MsgPack and I see a problem on deserialization. I have some class: struct myclass { char a,b,c; //in real program I have some enums here enum {a_no=1,b_no=7,c_no=8}; // index of ...
2
votes
0answers
330 views

Serializing with Messagepack

I like to serialize my java class object using Messagepack. My class structure is such that public class A { private InnerClass obj; //Some other variables with getters and setters. // ...
0
votes
2answers
291 views

How to use Msgpack between a C# program and a Node.js program?

I've successfully transfered data from a C# and a C++ program using the same class via ZMQ, where the C++ class is the data definition and the compiler luckily masks the byte-array to the class. How ...
1
vote
3answers
276 views

RPC between python and perl

I'm currently using json and http to call perl functions from python, but it's slow. Based on some research, messagepack is best for serialization and zeromq is the best transport. Both have cross ...
2
votes
0answers
121 views

msgpack-python Unable to allocate internal buffer

I used msgpack-python 0.1.12 in a uwsgi server with python2.7.2 . After running for some time, the server will throw a lot of exceptions as follows: File "_msgpack.pyx", line 171, in ...
0
votes
2answers
350 views

C++ MsgPack unable to compile

Am getting the following error when i tried to cmompile the code which uses the library http://msgpack.org/ , i tried the first example in C++ section ( documentation of library ) g++ hello.cc ...
2
votes
1answer
448 views

How to invoke a MessagePack RPC service from Javascript?

I've got this simple Java server process running as a MessagePack RPC service. I want to invoke the hello() service from Javascript, not Java, but have yet to find an example on how to achieve it. ...
2
votes
3answers
335 views

High performance object serialization library supporting sum types

I wonder if any of the high performance serialization libraries (like Google protocol buffers) support sum types. Sum types are tagged unions, basically the ability to say that something is either A, ...
0
votes
1answer
143 views

C# application talking with ruby msgpack server which is expecting a ruby-type hash?

I am looking to build a small application to talk with a ruby msgpack server in C#. My only holdup so far is that the API behind the server is expecting to pull out a ruby hash. Can I use a simple ...
0
votes
2answers
647 views

C++ msgpack User-defined classes - can't get started

I've been looking at the C++ quick-start guide for msgpack. http://wiki.msgpack.org/pages/viewpage.action?pageId=1081387 There, there is the following code snippet: #include <msgpack.hpp> ...
1
vote
2answers
1k views

Can msgpack pack a user-defined object in C#, send the pack to a C++ app where it is then unpacked?

I have a C# reply server that can pack an object and send it to a requester C# client. Can I do the same thing, but with a C# reply server communicating with a C++ requester client? Here's an example ...

1 2