Tagged Questions
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 ...
5
votes
6answers
289 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
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
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
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
1answer
67 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
158 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
3answers
189 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
704 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
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
932 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
650 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
40 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
3answers
150 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
502 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
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
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
513 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
0answers
71 views
Deserializing a Concrete Class As an Interface Using a BinaryFormatter in C#
I have run across an issue where I am getting a exception thrown when trying to deserialize what was once a concrete class into an interface using a BinaryFormatter (C#, .NET Framework 4.0).
To give ...
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
3answers
513 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
3answers
933 views
Convert object to byte[]
I am trying to convert a retrieved registry value from object to byte[]. It is stored as REG_BINARY. I tried using BinaryFormatter with MemoryStream. However, it adds overhead information that I do ...
0
votes
1answer
108 views
Binary formatter network streams
I am working on a project that uses binary formatter to deserialize a network stream. Everything works well unless someone decides to just turn off their computer (or hit the stop debugging button in ...
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. ...