soapformatter

.net remoting - Problems with List<T>

I am developing a client-server application using .Net Remoting. From my server I want to return a List in response to a certain method call, however I get an exception saying that basically SoapFormatter cannot deal with generics. I need a workaround so that I am able to work with generics, or direction on how to use XmlSerializer or Da...

Deserializing a struct with SoapFormatter

I added a new member to an existing class that's serialized. The SoapFormatter was used on released versions, so this can't be changed. The main problem is deserializing old versions that don't have this new member. The new problem is when ISerializable is added to the class, structs in that class can no longer be deserialized. I get...