Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
6
votes
3answers
3k views

BinaryFormatter alternatives

A BinaryFormatter-serialized array of 128³ doubles, takes up 50 MB of space. Serializing an array of 128³ structs with two double fields takes up 150 MB and over 20 seconds to process. Are there fast ...
5
votes
6answers
286 views

Binary file format with 1000s of records in C#

I would like to have an array model objects to be serialized to a binary stream. The model class will mainly have string and integer properties. I believe that I can mark the class as [Serializable] ...
4
votes
3answers
1k views

Performance: BinaryFormatter vs. XmlSerializer

I read very often that the BinaryFormatter has better performance then XmlSerializer. Out of curiosity, I wrote a test-app. a wtf moment... why is Xml so much faster than Bin (especially the ...
4
votes
5answers
494 views

ISerializable and backward compatibility

hello I have to work an an old application that used binaryFormatter to serialize application data into filestream (say in a file named "data.oldformat") without any optimizazion the main class has ...
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

C# BinaryFormatter and Deserialization Complex objects

Can not deserialize following object graph. That Exception occurs when deserialize method called on BinaryFormmater: System.Runtime.Serialization.SerializationException : The constructor to ...
3
votes
2answers
460 views

Backwards compatibility in .NET with BinaryFormatter

We use BinaryFormatter in a C# game, to save user game progress, game levels, etc. We are running into the problem of backwards compatibility. The aims: Level designer creates campaign ...
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
1answer
190 views

.Net Where to find the official specification of the BinaryFormatter serialization format?

I'd like to know what is the serialization format of the BinaryFormatter. I found this site which give some good informations, but it was obtained by reverse engineering and it is not complete. Where ...
3
votes
5answers
941 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
66 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
1answer
52 views

Reference integrity in BinaryFormatter

The existence of AsReference option in Protobuf-net and the word that BinaryFormatter is a "graph serializer" lead me to assume that BinaryFormatter does not maintain references and that it makes a ...
2
votes
2answers
157 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
2answers
135 views

BinaryFormatter object graph upgrade

In my object graph, I have something like [Serializable] public class Dog { string _name; } and I have all sorts of lists of Dogs and reference to Dogs. Since Dog was only animal at the ...
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
1answer
703 views

DataContractSerializer vs BinaryFormatter performance

I was going through articles to understand more about the datacontractserializer and binaryformatter serializers. Based on the reading done so far I was under the impression that binaryformatter ...
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
647 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
5answers
2k views

BinaryFormatter with MemoryStream Question

I am testing BinaryFormatter to see how it will work for me and I have a simple question: When using it with the string HELLO, and I convert the MemoryStream to an array, it gives me 29 dimensions, ...
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
931 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
2answers
39 views

Delete a record from a serialized file?

I am opening a serialized file that has all of my records stored. The code finds a match between the current record's object ID number property and the number in the respective textbox. I want to ...
1
vote
3answers
102 views

memorystream copyto network stream issues

I'm having a problem with this code here. using (MemoryStream ms = new MemoryStream()) { BinaryFormatter bf = new BinaryFormatter(); bf.Serialize(ms,SerializableClassOfDoom); ms.Position ...
1
vote
1answer
34 views

Deserialization of optional fields from BinaryFormatter

I have an application that serializes data using BinaryFormatter. A member was added to the class that was serialized from one version to the next without changing the class name. Code was added to ...
1
vote
2answers
62 views

how to convert java web application into single windows installer?

I have developed a java web application using eclipse, struts 2 framework and JSP.It is a ERP software application where i want to distribute it to the end user in a form of binary format where user ...
1
vote
3answers
149 views

Assembly Independent Serialization in .NET

I use Serialization/DeSerialization Technique. BinaryFormatter class. Each time when new assembly is created the BinaryFormatter can't Deserialize binary data even if the class structure is the same, ...
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
147 views

Serialization Exception

what is Exception "End of Stream encountered before parsing was completed." in the my code? BinaryFormatter t = new BinaryFormatter(); MemoryStream n = new MemoryStream(); t.Serialize(n, j); ...
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
998 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
1answer
579 views

how does binaryformatter serializes objects?

BinaryFormatter behaving in weird way in my code. I have code like following [Serializable] public class LogEntry { private int id; private List<object> data = new ...

1 2