VB.NET Alternative solution for serialization

  • Thread starter Thread starter anilkoli
  • Start date Start date
A

anilkoli

When object are serialized they are stored physically in a file(e.g.
XML). But if I want to deal with remote computers I have to provide
details about file where object is serialized or send that file
physically.

Instead of serializing an object to a file I want alternative and I
have following doughts/alternatives

1. Whether object can be serialized to a memory or cache instead to a
disk
2. Whether 'Remoting' concept can be used here

My application is for Chatting and I want to retrieve properties like
Font, Bold, Font Size with deserialization or by any mean, from
ChatServer to ChatClient or vice a versa.

Please, give me hint about what are the alternative ways to deal with
above situation.

Anil.
 
Back
Top