[Mono-bugs] [Bug 61721][Nor] New - [trivialfix] DictionaryBase serialized by Mono is incompatible with deserializer of Microsoft CLR
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 19 Jul 2004 10:49:45 -0400 (EDT)
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 paf@design.ru.
http://bugzilla.ximian.com/show_bug.cgi?id=61721
--- shadow/61721 2004-07-19 10:49:45.000000000 -0400
+++ shadow/61721.tmp.29620 2004-07-19 10:49:45.000000000 -0400
@@ -0,0 +1,46 @@
+Bug#: 61721
+Product: Mono: Class Libraries
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: PAF@design.ru
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: [trivialfix] DictionaryBase serialized by Mono is incompatible with deserializer of Microsoft CLR
+
+Release 1.0
+
+server part runs on Mono, client part on Microsoft.Net implementation.
+they need to exchange info.
+am trying to use Serialize|Deserialize to do that
+
+Steps to reproduce the problem:
+1. serializing some data on Mono
+2. transferring it to box with Microsoft.Net
+3. deserializing data there
+
+Actual Results:
+System.Runtime.Serialization.SerializationException: Cannot find member
+name ArtLebedev.Imprimatur2.DocumentManagement.LanguageStrings. at
+System.Runtime.Serialization.Formatters
+
+where LanguageStrings is a descendant of DictionaryBase
+
+Expected Results:
+normal deserialization.
+and overall compatibility of mono<=>ms libraries in serialization format.
+
+Additional Information:
+note: it's field is named as
+"dictionary"
+
+while to be compatible with MS.NET it should be named:
+"hashtable"