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 assembly which does the work it fails to deserialize because of the header in the binary file indicating that it requires Assembly x instead of Assembly y to handle the data.

Is it possible to setup the serialization/deserialization to be assembly agnostic?

link|improve this question

67% accept rate
I'm having the same problem... glad to know it's been addressed. – mmr Feb 5 '09 at 0:40
feedback

5 Answers

up vote 9 down vote accepted

You can control how the binary formatter resolves its types by assigning a custom SerializationBinder to the formatter. In this way, you won't need to mess with the AppDomain's resolve events and you eliminate the risk of unexpected side effects from that.

There is a detailed example at MSDN.

link|improve this answer
Thanks, this seems like the safest option - especially if I move the code into a different assembly... – Matthew Savage Feb 3 '09 at 22:59
except that it doesn't work (at least for me...) – mmr Feb 5 '09 at 1:25
@mmr: I just tested it and got it working. Start out with the MSDN example in the answer, and modify the serialization binder to allow some assembly version mismatch. – norheim.se Feb 5 '09 at 6:27
One thing you'll need to be aware of is that if you have nested types (e.g. a custom collection of custom objects) you'll need to be loading multiple assemblies... try stepping through the overloaded BindToType method. – Matthew Savage Feb 5 '09 at 23:41
How about going the other way? When you want to control how the assemblies that are in the binary WHEN SERIALIAZING? – jm. Sep 1 '09 at 1:20
feedback

You can change your BinaryFormatter property AssemblyFormat to make serialization independent of assembly version.

binFormat.AssemblyFormat = System.Runtime.Serialization.Formatters.FormatterAssemblyStyle.Simple;

link|improve this answer
It works but data should be serialized and deserialized using the same method. – dario-g Nov 30 '10 at 10:24
+1 this works and is the simplest solution that I can see – earcam Jul 26 '11 at 15:50
feedback

Hook into the AppDomain.OnAssemblyResolve event and fix-up the assembly names

private System.Reflection.Assembly OnAssemblyResolve( System.Object sender, System.ResolveEventArgs reArgs )
{
     foreach( System.Reflection.Assembly assembly in System.AppDomain.CurrentDomain.GetAssemblies() ) 
     {
         System.Reflection.AssemblyName assemblyName = assembly.GetName();
         if( assemblyName.FullName == reArgs.Name ) 
         {
              return( assembly );
         }
     }
}

source: http://osdir.com/ml/windows.devel.dotnet.clr/2003-12/msg00441.html

link|improve this answer
I was originally going to use this, however I can see that there's possible corner cases of failing badly with concurrent execution.. – Matthew Savage Feb 3 '09 at 23:00
feedback

The GAC is your first resource, allowing different versions of the assembly to co-exist side-by-side. But that doesn't really solve anything unless your app is version tolerant too. Binary serialization has several features to handle version tolerant serialization. Read about it in this MSDN library article.

link|improve this answer
Thanks for the GAC suggestion, however I'm trying not to leave a heavy footprint with the App, having everything run from its own folder. – Matthew Savage Feb 3 '09 at 22:59
feedback

There are altenative (binary) serialization engines (like this) that aren't assembly dependent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.