Tagged Questions

10
votes
3answers
266 views

Serialization and Obfuscation in .NET

I have a binary that I want to obfuscate and the hand out to users. Let us assume I use the an unobfuscated version of my binary to serialze data using the off the shelf .NET binary formatter. Could ...
8
votes
5answers
3k views

Binary Deserialization with different assembly version

I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes. The serialization/deserialization works fine, however if I were to change the ...
7
votes
1answer
359 views

C# BinaryFormatter exception

I'm attempting to move an object graph from a server process to a client. And it works. At least it works when the both the client and server are on my dev virtual machine. It also works when I run ...
6
votes
4answers
427 views

Can I deserialize an object when the underlying class has been changed slightly?

I've written a custom class MyClass and marked it with the <Serializable()> attribute. I have a set of binary files on my hard drive that I've serialized using BinaryFormatter that came from ...
4
votes
2answers
617 views

Does BinaryFormatter apply any compression?

When .NET's BinaryFormatter is used to serialize an object graph, is any type of compression applied? I ask in the context of whether I should worry about the object graph having many repeated ...
4
votes
1answer
413 views

How do I ignore event subscribers when serializing an object?

When the following class is serialized with a BinaryFormatter, any objects subscribing to the Roar event will also be serialized, since references to those objects are held by the EventHandler ...
3
votes
1answer
79 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 ...
3
votes
2answers
307 views

SerializationBinder with List<T>

I'm trying to make the BinaryFormatter work across different versions of my assembly. The actual class I want to deserialize to is exactly the same in each assembly version, but on deserialization, ...
3
votes
2answers
1k views

Sending large serialized objects over sockets is failing only when trying to grow the byte Array, but ok when using a massive byte array

I have code where I am trying to grow the byte array while receiving the data over my socket. This is erroring out. public bool ReceiveObject2(ref Object objRec, ref string sErrMsg) { ...
3
votes
5answers
939 views

How to increase deserialization speed?

Serializing/deserializing with BinaryFormatter, resulting serialized file is ~80MB in size. The deserialization takes a few minutes. How could I improve on this? Here's the deserialization code: ...
2
votes
2answers
38 views

Strange deserialization error, child objects are not fully deserialized

I just noticed a weird behavior in binary serialization: when I deserialize a dictionary in my class and try to add something to it immediately, I get an error because it's not fully initialized: ...
2
votes
1answer
65 views

What causes an object version change with an object serialized with BinaryFormatter?

Per this question I have an object that I'm serializing with BinaryFormatter. For various reasons we've implemented a poor man's version handling like this with a try-catch block at the bottom for ...
2
votes
2answers
155 views

Binary object graph serialization

I'm looking for advice on serialization in a .net app. The app is a desktop/thick client app and the serialization represents the persisted document format. The requirements for the serializer is ...
2
votes
1answer
130 views

BinaryFormatter , exact TYPE-SIZE buffer

I have this serializable class : [Serializable] public class myClass { public byte myByte { get; set; } public short myShort { get; set; } public int myInt { get; set; } } knowing ...
2
votes
1answer
83 views

Does serializing distinct but equal object graphs with BinaryFormatter produce same binary representation?

I'm looking at hashing an object model, based on a serialization of it. If I serialize an object graph using the .NET BinaryFormatter, is the serialized representation guaranteed to be the exact ...
2
votes
3answers
188 views

C# ProgressBar with Deserialize()

I have a few large object graphs which I have serialised, and some of them take a few moments to deserialise. At this stage, I'm quite happy with my little "Please Wait..." box which appears and then ...
2
votes
2answers
210 views

How do I deserialize a collection of references to a struct equivalent?

NOTE: This question changed a little as I learned more about the problem, so please read it in its entirety. I've decided to leave it in its original form as it better describes how the problem was ...
2
votes
5answers
646 views

How to get BinaryFormatter to deserialize in a different application

I am using BinaryFormatter to serialize an array of class instances to a file. I can deserialize this fine within the same application. When I try the same deserialization in a different application ...
2
votes
2answers
207 views

How to refactor a class that is serialized in .NET?

I have a C# class that is serialized to disk by the BinaryFormatter, such as this example: // Version 3.0 [Serializable] public class Person { public string FullName; ...
2
votes
2answers
427 views

BinaryFormatter alternative

I am shopping for a BinaryFormatter alternative/replacement. The current issues I have with BinaryFormatter (and the alternatives should address this) are 1) backwards compatibility (can ...
2
votes
3answers
341 views

What is the best way to deserialize generics written with a different version of a signed assembly?

In other cases it has been suggested that you simply add a SerializationBinder which removes the version from the assembly type. However, when using generic collections of a type found in a signed ...
2
votes
2answers
930 views

Why is BinaryFormatter trying to serialize an Event on a Serializable class?

I have a simple class that is marked as Serializable, and it happens to have an event. I tried to mark the event member as NonSerialized, however the compiler complains. Yet when I go to serialize the ...
2
votes
1answer
1k views

Binary stream 'NN' does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization

I am passing user defined classes over sockets. The SendObject code is below. It works on my local machine, but when I publish to the WebServer which is then communicating with the App Server on my ...
2
votes
4answers
649 views

How to change the order of Deserialization using BinaryFormatter in C#?

Lets say I have classA which contains classB and both are [Serializable]. I assumed, that on Deserialization classB would be deserialized first. This is not the case however, as I could confirm by ...
2
votes
1answer
615 views

How to deserialize or recover a binary serialized dictionary that's not finished serializing?

When I used my app, on close, it tried to serialize a dictionary that's 300 KB. Because of no disk space, it could only write 292 KB. Is there a way to successfully deserialize whatever is in there? ...
1
vote
0answers
32 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, ...
1
vote
1answer
339 views

BinaryFormatter.Serialize with MemoryStream issue

I am having an issue using BinaryFormatter.Serialize. I have this generic extension method to "clone" an object via binary serialization: <Extension()> Public Function ...
1
vote
1answer
500 views

Exceptions while using BinaryFormatter to deserialize my serialized data

I am using the BinaryFormatter and a MemoryStream to serialize an object and then store it in a database as a binary blob. I then retrieve the data from the database and deserialize using ...
1
vote
4answers
455 views

C# Sending size of object with serialized object over Async socket connection

I want to serialize an object and send it over the network. I have set it up using ISerializeable attribute on my class and BinaryFormatter to convert the object to bytes. I can send the object and ...
1
vote
3answers
67 views

Serialiazing various types into one file

I'm using a BinaryFormatter to serialize my object. I have various object types in their relevant lists. Is there a 'best' way to serialize all the objects into one file, but be able to separate them ...
1
vote
4answers
997 views

BinaryFormatter deserialize gives SerializationException

I'm getting an: System.Runtime.Serialization.SerializationException: Unable to find assembly 'myNameSpace, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null When trying to deserialize some data ...
1
vote
5answers
82 views

Can a IFormatter deserizalize a object of an unreferenced type?

Supose I serialized a third party library type object with BinaryFormatter. An assemby that does not references this library tries to deserialize the bytes. Will it work? I do not expect to it be ...
1
vote
6answers
2k views

C# Object Binary Serialization

I want to make a binary serialize of an object and the result to save it in a database. Person person = new Person(); person.Name = "something"; MemoryStream memorystream = new MemoryStream(); ...
1
vote
1answer
469 views

Stuck on Serialization in C#

I have a class that handles serialization in C#, called Serializer. It's implementation is below: public class Serializer { public void SerializeRulesManager(string filename, RulesManager ...
1
vote
2answers
512 views

Byte serialization

I recently had a discussion with a colleague about serialization of byte data over a network. He used the BinaryFormatter class to "unparse" the byte data I was sending to him. This did not work and ...
0
votes
1answer
65 views

Performance issue when serializing multi-dimensional arrays using BinaryFormatter in .NET

I'm using the BinaryFormatter to serialize a fairly simple multi-dimentional array of floats, although I suspect that the problem occurs with any primitive types. My multi-dimensional array contains ...
0
votes
0answers
18 views

File size growth with multiple DataTable serializations

I have a DataTable loaded from a CSV file containing 175 columns and 2000 rows and bound to a DataGridView control. The CSV file is 1.6 MB in size. I serialize the data table (dt) using GZip ...
0
votes
1answer
682 views

End of Stream encountered before parsing was completed. SerializationException

Anyone can help with this method? I have a generic method for deserializing files to types. public static T DeserializeFromFile<T>(string fileName) where T : class { if ...
0
votes
2answers
173 views

BinaryFormatter serialization/deserialization alternative in Android

I have a class serialized in C# using BinaryFormatter serialize method. Is there any way i can de-serialize it in android application. I mean is there any alternatives of BinaryFormatter in android?
0
votes
1answer
138 views

BinaryFormatter.Deserialize() method does not work in an AutoCAD plugin

When I call the Deserialize method on an instance of System.Runtime.Serialization.Formatters.Binary.BinaryFormatter in IExtensionApplication.Initialize of an AutoCAD plugin, the next code line after ...
0
votes
1answer
77 views

BinaryFormattere throwing a FileNotFoundException on a file that exists, why?

I've serialized a file with some atributes with this code: public void saveLevelInfo(LevelData levelInfo) { stream = File.Open("Game.data", FileMode.Create); BinaryFormatter bFmt ...
0
votes
1answer
161 views

Binary Serialization of references using BinaryFormatter

Given the following class structure, will Bar serialize/deserialize as expected? public class Foo { int x; string y; } [Serializable] public class Bar { Foo[] AllFoos; Foo SelectedFoo; public ...
0
votes
2answers
338 views

Serialization with BinaryFormatter *PERFORMANCE* issues

Background: I'm stuck with LARGE object graph that gets serialized into some 60MBs of file (and will grow over time). Problem isn't file size but writing and reading times, that go up to 4 minutes ...
0
votes
3answers
511 views

How do you send a serialized object over net?

i am trying to build a chat! now my goal is to receive input from the user, (which will be fed to a function in a class), save it and send the object to the user over the net. here is my code so far: ...
0
votes
1answer
165 views

Merging binary data

I'm reformatting this question to be shorter and to the point. If I run a bunch of different custom objects through BinaryFormatter's Serialize method, I will get a bunch of serialized binary files. ...