T
Tony Johansson
Hello!
Assume there are two applications developed in .NET running in two different
networks that should use serialize/deserialized data between each other.
What kind of method should be used.. There are two alternatives
1. BinaryFormatter
2. Soapformatter
According to the docs it says. You should choose BinaryFormatter only when
you know that all clients opening the serialized data will be .NET Framework
applications.
Use SoapFormatter when other applications might read your serialized data
and when sending data across a network.
//Tony
Assume there are two applications developed in .NET running in two different
networks that should use serialize/deserialized data between each other.
What kind of method should be used.. There are two alternatives
1. BinaryFormatter
2. Soapformatter
According to the docs it says. You should choose BinaryFormatter only when
you know that all clients opening the serialized data will be .NET Framework
applications.
Use SoapFormatter when other applications might read your serialized data
and when sending data across a network.
//Tony