[Mono-bugs] [Bug 73114][Wis] New - Serialization/deserialization incompatibilities between Mono and .NET

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 28 Feb 2005 10:12:02 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by dezelin@gmail.com.

http://bugzilla.ximian.com/show_bug.cgi?id=73114

--- shadow/73114	2005-02-28 10:12:02.000000000 -0500
+++ shadow/73114.tmp.14722	2005-02-28 10:12:02.000000000 -0500
@@ -0,0 +1,48 @@
+Bug#: 73114
+Product: Mono: Class Libraries
+Version: 1.1
+OS: 
+OS Details: Fedora Core 3; Mono-latest built from the source
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: dezelin@gmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Serialization/deserialization incompatibilities between Mono and .NET
+
+Description of Problem:
+
+Serialization/deserialization incompatibilities between Mono and .NET
+
+I have those objects (provided in attachment) serialized in .NET and cannot
+deserialize them in Mono.
+
+
+Steps to reproduce the problem:
+1. Build PassiveTypes.dll - source is provided in attachment
+2. Try to deserialize any of the files provided in /templates directory by
+calling: 
+
+    BinaryFormatter bf = new BinaryFormatter();
+    bf.Binder = new ReportBinder();
+    Report r  = (Report)binary.Deserialize(stream);
+
+Classes Report and ReportBinder are from PassiveTypes.dll
+
+Actual Results:
+Deserialization exception
+
+
+Expected Results:
+Instance of Report type object.
+
+How often does this happen? 
+Always
+
+Additional Information: