Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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

How to ignore Event class member for binary serialization?

I need to avoid serializing an Event class member because when the event is handled by an object that is not marked as Serializable the serialization will fail. I tried using the NonSerialized ...
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
305 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
4answers
846 views

C# BinaryFormatter.Deserialize “unable to find assembly” after ILMerge

So I have a C# solution with a referenced dll (also C# with the same .Net version). When I build the solution and run the resulting exe, without merging the exe and the referenced dll, everything ...
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 ...
3
votes
2answers
761 views

Why can't the 'NonSerialized' attribute be used at the class level? How to prevent serialization of a class?

I have a data object that is deep-cloned using a binary serialization. This data object supports property changed events, for example, PriceChanged. Let's say I attached a handler to PriceChanged. ...
2
votes
3answers
90 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 ...
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
2answers
215 views

getting “unable to find assembly” when trying to deserialize, works from client to server but not the other way

I've read plenty of similar questions and answers on this topic, but still not sure why I get this problem. I have a client and server projects, both using the same dll library I created. when I ...
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 ...
2
votes
4answers
5k views

Convert a byte[] array into DataTable

I saved an object of type DataTable into SQL 2005 database in a field of type varbinary. I want to retrieve it back but I wasn't able to type cast it. This is how i saved it. MemoryStream memStream = ...
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
2answers
255 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
99 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
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
168 views

Example of a Customer Binary Serializer in .Net

So, I want to implement my own binary serialization. I'm looking for some examples to head me in the right direction. Also, am I better to make my own serializer class, or just implement ...
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
472 views

Conditional C# Binary Serialization

I am using BinaryFormatter to serialize a class and its variables by condition. For example: [Serializable] public class Class1 { private Class2 B; ... } [Serializable] public class Class2{...} I ...
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 ...
1
vote
1answer
399 views

Sending interfaces as message in NServiceBus with the Binary Serializer

I recently moved to using the binary serializer to send messages with NServiceBus. My messages are all defined as interfaces and are instantiated using bus.Send<MessageType>(msg => ...
1
vote
1answer
421 views

Is there an XML specific object (like XElement) that is binary serializable?

I have a use case where I am serializing objects over the wire via MSMQ (mostly strings). When I read the object off the queue I want to be able to tell if the user meant for the object to be a XML or ...
0
votes
1answer
25 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
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
2answers
200 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 - ...
0
votes
2answers
89 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
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
1answer
90 views

ASP.NET Custom Profile Object Fails After Changing to MSBuild Deployment

We have an ASP.NET 2.0 web forms app that used to be deployed via a web deployment project. Recently we deployed a new version built by TFS/MSBuild and the change seems to have caused a problem with ...

1 2