Mono's DateTime Serialization - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T15:21:19Zhttp://stackoverflow.com/feeds/question/70487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/70487/monos-datetime-serialization1Mono's DateTime SerializationMichael Buen2008-09-16T08:54:01Z2009-05-15T07:45:21Z
<p>if you uses Mono Remoting on Linux, what's your work-around for DateTime marshalling incompatibility between Mono and .NET Remoting?</p>
<p>i'm using WinForms on Windows using .NET 2.0 runtime, using Remoting on Linux using Mono. i cannot yet use Mono runtime on both ends as Mono's DataGridView isn't yet working.</p>
<p>[UPDATE]</p>
<p>i used Mono 1.9 when the question was posted. i'm using Mono 2.4 now, its DateTime is now compatible with .NET. kudos to Miguel de Icaza, his team and Novell</p>
http://stackoverflow.com/questions/70487/monos-datetime-serialization/71253#712531Answer by Silver Dragon for Mono's DateTime SerializationSilver Dragon2008-09-16T11:06:44Z2008-09-16T11:06:44Z<p>I think a much better solution would be refactoring the code, so instead of the (yet under-supported) remoting, use web services. XML serialization of most basic data types are IIRC fully supported; and in certain circumstances, fits the architecture much better (especially server-client architectures).</p>
http://stackoverflow.com/questions/70487/monos-datetime-serialization/81477#814771Answer by skolima for Mono's DateTime Serializationskolima2008-09-17T09:32:12Z2008-09-17T09:32:12Z<p>File a bug with a test case.</p>