Re: [Mono-dev] Bugs in Serialization

2006-08-27 Thread admin rex
Valentin,The serialized object is within the same module of the calling code. They are under the same namespace. So the assembly should be load when the application runs. Thx Antony On 8/27/06, latency [EMAIL PROTECTED] wrote: Hi,seems like when trying to deserialize your object, the runtime

Re: [Mono-dev] Bugs in Serialization

2006-08-27 Thread Robert Jordan
Hi, Check whether the assembly SRC, Version=1.0.2063.23042 has the same version on both sides. Robert admin rex wrote: Valentin, The serialized object is within the same module of the calling code. They are under the same namespace. So the assembly should be load when the application

[Mono-dev] Bugs in Serialization

2006-08-26 Thread admin rex
I am using the VMware from Mono project. And when try to deserialize an object over a network stream. It gives System.IO.FilenotfoundException: SRC, Version=1.0.2063.23042... (wrapper managed-to-native) System.AppDomain:LoadAssemblyDoes this related to the PrivateBinPath bug reported earilier?

Re: [Mono-dev] Bugs in Serialization

2006-08-26 Thread latency
Hi, seems like when trying to deserialize your object, the runtime tried to load an assembly (most likely because the serialized type was unknown for the runtime) and failed. Can you tell if the assembly of the serialized object was already loaded or not? If you don't know how to do this see: