The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
56 views

SerializationException when deserializing

This code deserialize object from SQLite. I'm get serialized object from DBinaryData (BLOB) field. But get System.Runtime.Serialization.SerializationException: end of stream encountered before parsing ...
0
votes
0answers
48 views

Read/Write a Nullable Type using BinaryReader?

I am overloading the System.IO BinaryReader to serialize some classes for file storage purposes. I have had no issues doing items like dictionaries and such, but have not been successful with a ...
0
votes
1answer
74 views

Serializing multiple objects into one binary file

I have an MDI application with a treeview control docked to the left and five classes containing the information of the tree nodes i.e Editors for that kind of node. How should I serialize the ...
1
vote
0answers
72 views

serialize object (really Mongoid document) to any binary format in Rails

I implementing async process which handle documents from mongodb database. I have something like master thread which check if new objects exist in collection and then put it to the queue (RabbitMQ), ...
0
votes
0answers
86 views

Javascript custom binary serialization and tcp transfer

I have Custom simple binary messaging protocol where message looks like this [message size][message id][message body] Binary serialization using .NET's System.BitConverter Custom tcp socket ...
0
votes
1answer
156 views

Binary serialization and automatic properties

I have a class like this: public class Foo { public IBar {get;set;} //tons of other properties } public interface IBar { //whatever } The class is used for binary serialization ...
1
vote
1answer
79 views

Binary Serialization Backend for Orange

Why doesn't the library Orange support a binary serialization backend in addition to its XML? Is it because D currently cannot access/reflect on its binary representation or is it just not prioritized ...
0
votes
2answers
105 views

difference of two methods for converting byte[] to structure in c#

I'm doing some conversions between some structures and thier byte[] representation. I found two way to do this but the difference (performance, memory and ...) is not clear to me. Method 1: public ...
0
votes
1answer
55 views

SurrogateSelector seems to work only on the root object

I try to use SurrogatSelector to customize the deserialisation of a stream. It works fine for the root object of the object graph but not for contained objects. See the following code: Stream ...
1
vote
1answer
112 views

Deserialize types moved across assemblies

I have a bunch of types which have been moved from one assembly to another. I am trying to deserialize data which was serialized using the old assembly into types in the new assembly by using a ...
1
vote
1answer
172 views

Binary Serialization of List<T> where T implements ISerializable

I have a class X which implements ISerializable #region ISerializable Members /// <summary> /// Sets up for deserialization /// </summary> /// <param ...
0
votes
2answers
100 views

What are possible causes of binary stream corruption?

I am trying to learn how to do binary serialziation. This exception gets thrown every time I try to deserialize an object I previously serialized: Binary stream '161' does not contain a valid ...
2
votes
3answers
162 views

Java partial (de)serialization of objects

Let's say we have 3 Classes: class foo { // not a singleton String s; } class bar { foo f; int i; } class baz { foo sameF; } Now we create instances foo onlyFoo = new foo("the only ...
1
vote
1answer
433 views

Binary serialization vs. JSON vs. xml [closed]

Does anyone know what are approximately the performance gains, in terms of time, when using binary serialization versus JSON versus xml and sending the data over the network, provided that the data ...
6
votes
5answers
253 views

Is it possible to do .NET binary serialization of an object when you don't have the source code of the class?

I am using BinaryFormatter to do binary serialization of some objects in C#. However, some of the objects contain classes that I access via a DLL and do not have the source code for, so I can't mark ...
2
votes
1answer
145 views

Is there any limits for binary serialization / deserialization object graph size in .net?

For example, i have: struct SomeStruct { //some fields //each instance will store info read from file, maybe be 3kb, maybe more. } List<SomeStruct> lst = new List<SomeStruct>(); ...
0
votes
1answer
92 views

serialize list contain hash table

i have a class which has a string and a hash table.hash table contains set of key(string) values and bitmap file for each key attribute. how do i serialize this into binary file? public void ...
2
votes
1answer
186 views

Protocol Buffer to Serialize C++ and and Deserialize to C# class

Is it possible to Serialize a class in C++ and deserialize it to a similar class in C# using protocol buffer? I have tried Json serialization to overcome this serialization issue in different ...
0
votes
1answer
196 views

Silverlight Binary Serialization over the wire

While nearly completing a new release, we've ignored the large size of the XML data that our WCF service returns to our silverlight client. Now we're investigating how to shrink the data, so that the ...
0
votes
0answers
38 views

“can't write object because it does not support persistence”

I'm trying to serialize a a C# object using a binary formatter. [System.Runtime.InteropServices.COMException] = {"Illegal parameter. Can't write object because it does not support persistence."} ...
0
votes
0answers
137 views

WCF serialization with IsReference and JSON

Have some time I have worked with WCF and I am always running into the same problem I'm always solving alternatives. Let me share with you to see if you have any idea how to solve the problem. I have ...
1
vote
1answer
255 views

.net serialization: how to selectively ignore data fields

In. Net you can mark a field as non serializable, and it will be skipped during serialization. I'm looking for a simple method that will allow me to control in runtime whether a specific field ...
0
votes
3answers
328 views

Serializing java.lang.class

I have a problem persisting the Class object in the DB. I tried to convert the object into a byte array using object ObjectArrayOutputStream and ByteArrayOutputStream as shown below and persisted it ...
0
votes
1answer
337 views

binaryFormatter.Deserialize(stream) : Debugging and fixing errors

I'm using BinaryFormatter for serializing and deserializing custom file types. I have a stand alone application and a web application, which sould both read and write the same files. The standalone ...
1
vote
1answer
266 views

C# UDP Object Binary Serialization with large objects

I'm writing a network library that utilises both TCP and UDP simultaneously to transfer serialized objects over the internet. The library (simplified) is split in to a client and a server. When ...
3
votes
2answers
274 views

C# Serialization practices of object with custom types

I've created some custom types for example: public class Temperature { protected double _celcius; public Temperature(){} public Temperature(double celcius) { _celcius = ...
2
votes
0answers
81 views

VS2010 build-time serialization for fast run-time loading?

In Visual Studio 2010 under .NET4, is there a good way to instance, populate, and binary-serialize classes as part of the build process? I am writing an application which takes several seconds to load ...
0
votes
1answer
168 views

Easy Bit-Level Serialiation

I'm looking for a C++ API to conveniently an efficiently serialize/unserialize (user-defined) types of arbitrary bit-size into some structure (preferrably template class) containing a set of bits. I ...
1
vote
1answer
178 views

How to minimize serialized data - binary serialization has huge overhead

I'd like to reduce the message size when sending serialized integer over the network. In the below section buff.Length is 256 - to great an overhead to be efficient! How it can be reduced to the ...
5
votes
2answers
711 views

Why does Get-Date seem to return DateTime objects, but the BinarySerializer indicate it returns a PSObject?

Take the simple HashTable: $data = @{ First = 'Justin'; Last = 'Dearing'; StartDate = Get-Date '2002-03-23'; } The key StartDate seems to contain a DateTime. ...
0
votes
3answers
148 views

Java: instantiating an enum from a number using reflection

Signalling Protocols make frequent use of Enumerated types which have well defined integer values. E.g. public enum IpHdrProtocol { TCP(6), SCTP(132), MPLS(137); int Value; IpProtocol(int value) { ...
0
votes
1answer
167 views

Traverse and find all given type instances within complex object graph

(using vb.Net 4.0) Say you have an object whose graph is fairly complex - it has properties, arrays and other collections, subclasses with their own properties and collections, etc. I want to fully ...
0
votes
2answers
182 views

C++: Custom object serialization/deserialization failing

I'm having problems reading a serializaed object back from its stored file. (See code below). The serialization process "works", (albeit, probably written very poorly), and because there is no way of ...
2
votes
0answers
243 views

Explicit BinaryFormatter serialization when Constructor is not called

Some background about my problem: I have a lot of classes that implement ISerializable and are designed to be serialized using the explicit BinaryFormatter methods: .ctor(SerializationInfo info, ...
2
votes
1answer
247 views

Binary serialization of mutable F# record

I have used binary serialization to save an F# record from a C# class. All works fine: F#: type GameState = { LevelStatus : LevelStatus Grid : Variable<Option<Ball> ...
2
votes
3answers
242 views

Serialization in .NET

My task was to serialize and deserialize an object. I want to know: Whether my object is serialized in the way I'm doing it How I get to know that my object is being serialized or deserialized ...
1
vote
1answer
209 views

boost::archive::binary_(i/o)archive portability

Is a boost binary archive "portable" from one Linux x86_64 machine to another Linux x86_64 machine? The documentation suggests it is, by using the term native binary, however, I have not yet been ...
0
votes
1answer
216 views

Sporadic serialization failure in C#

We have an Excel import into our system that we test quite rigorously. Recently, we've been noticing sporadic serialization errors. These errors are popping up in our automated tests against the ...
2
votes
2answers
758 views

How can I serialize a 3rd party type using protobuf-net or other serializers?

I have List<HtmlAgilityPack.HtmlNode> but protobuf-net gives me error that it doesn't have a contract. How can I specify a contract for it when I don't have the source? It actually said it ...
4
votes
1answer
259 views

Deserialize to type whose namespace has changed

Using .NET 4/C#... I need to deserialize old config files that contain the serialized representation of a type named, say, ns1.X . The serialization has been done using BinaryFormatter. The problem ...
0
votes
0answers
43 views

What is the lifecycle of Binary Deserialization? [duplicate]

Possible Duplicate: How does BinaryFormatter.Deserialize create new objects? What happens in what order? Are property setters and getters called? If so is there a way to avoid that? Is ...
0
votes
3answers
840 views

C# and Android/Java - cross-language binary stream writers/readers? (for primitives and UTF-8 strings)

What is the easiest way to do binary serialization/deserialization of some custom data between C# and Android's Java? I'd like to find for Java something similar to C# BinaryWriter and BinaryReader - ...
4
votes
1answer
1k views

Does Protobuf-net has build-in compression for serialization?

I was doing some comparison between BinaryFormatter and Protobuf-net serializer and was quite pleased with what I found, but what was strange is that Protobuf-net managed to serialize the objects into ...
0
votes
2answers
282 views

C# serialize only values into a byte stream

Is there any possibility to automatically serialize properties of a class into a byte[] array or stream. Stream stream = File.Open(@"C:/traiBin.bin", FileMode.Create); BinaryFormatter bFormatter = ...
0
votes
1answer
910 views

Deserializing a byte[] back into a DataTable

I have the following code to serialize /deserialize a DataTable: public static byte[] Serialize(DataTable dt) { System.IO.MemoryStream stream = new System.IO.MemoryStream(); ...
1
vote
5answers
245 views

Is it safe to remove the const-ness of the stringstream result when performing binary serialization?

I have a situation in which I'm performing binary serialization of a some items and I'm writing them to an opaque byte buffer: int SerializeToBuffer(unsigned char* buffer) { stringstream ss; ...
1
vote
4answers
83 views

Customize a struct so that it serializes as a Int32

I save data using binary serialization. Now I have changed a field in the program from Int32 to a struct. But I still want to save the field as Int32 to be backward compatible. How do I do that? ...
2
votes
0answers
377 views

SerializationException Unable to find assembly

I need to know if is possible serialize an object of type AssemblyA.MyType and deserialize the file to type AssemblyB.MyType. These two types are identicals, the only difference is the location that ...
1
vote
2answers
851 views

Send client side data Queue to server side through Tcp/IP

I wanna send data from client to server. There are two queues. in client side and in server side. I want to my client to be connected to the server and send all the data in client queue to the server. ...
1
vote
1answer
246 views

Serializing enum-like objects

I am using binary serialization (with BinaryFormatter, etc) to serialize a graph of objects. Of those objects, some have fields of a certain type that is similar to an enumeration, except with ...

1 2