To exchange messages with attachments over WAN

  • Thread starter Thread starter Jessica
  • Start date Start date
J

Jessica

Hello All,

If an application has to be developed in C# which enables the users over a
WAN to exchange messages (not real time chat but e-mail like), what mechanism
would be
the best to exchange these messages? (Messages will contain text as well as
attachments of any file type.)

How about using socket communication? Or is there already some libraries
available in .NET Framework for such a purpose?

Thanks In Advance,
Jessy.
 
If the messages are supposed to queue like email rather than be received real
time then you would need to implement storage to hold the chat and the
attachements. The easiest thing for this IS email, other wise, I would
implement a server app with WCF or webservices to send and receive the chat
which is stored in a database for people to receive at a later date.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top