Tagged Questions
14
votes
5answers
3k views
What are the differences between the XmlSerializer and BinaryFormatter
I spent a good portion of time last week working on serialization. During that time I found many examples utilizing either the BinaryFormatter or XmlSerializer. Unfortunately, what I did not find were ...
8
votes
4answers
281 views
How do I deserialize old data for a type that has changed?
I have data that has been stored using binary serialization for the following class:
[Serializable]
public abstract class BaseBusinessObject
{
private NameValueCollection _fieldErrors = new ...
6
votes
3answers
1k views
How does BinaryFormatter.Deserialize create new objects?
When BinaryFormatter deserializes a stream into objects, it appears to create new objects without calling constructors.
How is it doing this? And why? Is there anything else in .NET that does this?
...
5
votes
2answers
371 views
Should I Still Use BinaryFormatter for Simple Serialization in .NET 4.0?
I am developing a master-slave style application. The master application will send state data to the slave(s) to process and display at some constant rate. The state data is wrapped up into a single ...
5
votes
3answers
1k views
when to use XML serialization vs binary serialization in .NET?
i have the bit confusion to when to use the xml serialization and when to use the binary serialization
5
votes
1answer
620 views
Test for Optional Field when using .NET Custom Serialization
Given a class like this one:
[Serializable]
public class MyClass {
string name;
string address;
public MyClass(SerializationInfo info, StreamingContext context){
name = ...
5
votes
2answers
2k views
deserializing a generic list returns null
I'm de/serializing an object like so:
public class myClass : ISerializable
{
public List<OType> value;
public myClass(SerializationInfo info, StreamingContext context)
{
this.value = ...
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
3answers
304 views
Fast and comprehensive binary serialization framework for Windows Phone 7
I am looking for a fast binary serialization framework to use in Windows Phone 7 for a project I am migrating from Windows Mobile 6.5
Protobuf-net works great in WM6.5, but it is still far from prime ...
3
votes
3answers
182 views
Where is this non-serializable object?
I'm trying to serialize an object and the following SerializationException is thrown:
Type 'System.Linq.Enumerable+d__71`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, ...
3
votes
3answers
177 views
How to optimize class for viewstate
If I have an object I need to store in viewstate, what kinds of things can I do to optimize the size it takes to store the object? Obviously storing the least amount of data will take less space, but ...
2
votes
2answers
107 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 ...
2
votes
1answer
228 views
VB.NET serialization error
I'm trying to serialize the main class in my VB solution. I've added the Serializable attribute at the top of my class like so:
<Serializable()>
Public Class Form1
and I'm using the following ...
2
votes
1answer
128 views
Problem with Lists of custom type and Serialization
We are working on releasing version 2.0 of one of our products, and we want to maintain file compatibility with the installed base of version 1.0 customers. I have been implementing ISerializable on ...
2
votes
3answers
280 views
Binary Serialized File - Delphi
I am trying to deserialize an old file format that was serialized in Delphi, it uses binary seralization. I know nothing about the structure of the file except some very high level records that are in ...
2
votes
1answer
114 views
Is there a shortcut to binary-serialize every property in an object?
If there is an object in which every public property must be serialized and properties are simple (just numbers or strings or objects already implementing ISerializable), is there an easy way to do it ...
2
votes
3answers
544 views
How to analyse contents of binary serialization stream?
I'm using binary serialization (BinaryFormatter) as a temporary mechanism to store state information in a file for a relatively complex (game) object structure; the files are coming out much larger ...
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
124 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> ...
1
vote
1answer
51 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 ...
1
vote
1answer
173 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 ...
1
vote
5answers
128 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
65 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?
...
1
vote
1answer
164 views
Binary serialization in C# (really, WYSIWYG serialization)
(for WYSIWYG I mean that I decide WHAT is written and HOW it's written, and not someone at Microsoft or at Google) (OK... Technically I don't decide anything... Someone that programmed some years ago ...
1
vote
2answers
158 views
Serialization problem : System.UnauthorizedAccessException
I am getting this error:
An unhandled exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.dll
Additional information: Access to the path 'C:\Users\Storm ...
1
vote
2answers
149 views
binary serialization, adding a new field to class - will it work?
I have a client and a server application which communicate over .NET 2.0 Remoting using binary serialization.
A small change has been made to one of the data transfer object's interface and the ...
1
vote
1answer
119 views
polymorphism in c and buffers
I have this union:
typedef union Message
{
message_base base;
message_with_parameters parameters;
reply_message reply;
buffer_t *buffer; // can't ...
0
votes
2answers
47 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 ...
0
votes
1answer
83 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 ...
0
votes
0answers
32 views
What is the lifecycle of Binary Deserialization? [closed]
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
1answer
93 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();
...
0
votes
0answers
147 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 ...
0
votes
0answers
64 views
How to modify the serialised output of a BinaryFormatter in c#
I've got a bit of a versioning issue with my serialisation/deserialisation code. The problems has a few parts so let me outline these:
I do not have access to the code consuming the binary messages
...
0
votes
3answers
102 views
Is there a chance of saving the hashcode of an object during its binary serialization (binary)?
I want to be able to compare objects by the hashcode.
Per example, one is the object itself, and the other is serialized (binary) and then recovered version of the object.
How can I save the hash ...
0
votes
5answers
266 views
Serializable attribute .NET
I'm using Binary Serialization in .NET to clone objects. Any of my own classes I must mark with the <Serializable()> attribute in order for the serializer to process the class. However since ...
0
votes
0answers
68 views
Converting binary serialization to Soap serialization
I want to send binary serialized messages, but I am worried that if there is an error when de-serializing, I won't be able to figure out the problem. For SOAP, I would just be able to see the ...
0
votes
3answers
399 views
Best method for serializing objects in .NET (as of v4.0)
I have an simple custom object called MyObject (a couple of basic properties and a List(of MyObject), so it's recursive) that I need to serialize for storage. I'm not sure if I'll serialize to XML or ...