I m facing issue where same message Packed with the ruby and C# has different number of bytes and where ruby code msgpack library gives below warning while unpacking:
Error in processing message. error_class=MessagePack::MalformedFormatError error=#### <MessagePack::MalformedFormatError: 11 extra bytes after the deserialized object>
My intention is to send data from c# to ruby program.
Message in ruby: [works fine]
["test3.aa",time,{"a"=>1}].to_msgpack
Message in C# [Shows warning message for extra bytes on unpack]
Object[] test1 = new Object[3] {"test3.aa", 1308466941, new {a =1}};
Thanks in advance,
Rahul
The text was updated successfully, but these errors were encountered:
Hi,
I m facing issue where same message Packed with the ruby and C# has different number of bytes and where ruby code msgpack library gives below warning while unpacking:
Error in processing message. error_class=MessagePack::MalformedFormatError error=#### <MessagePack::MalformedFormatError: 11 extra bytes after the deserialized object>
My intention is to send data from c# to ruby program.
Message in ruby: [works fine]
["test3.aa",time,{"a"=>1}].to_msgpack
Message in C# [Shows warning message for extra bytes on unpack]
Object[] test1 = new Object[3] {"test3.aa", 1308466941, new {a =1}};
Thanks in advance,
Rahul
The text was updated successfully, but these errors were encountered: