Data communication between server and devices

  • Thread starter Thread starter Zeno Loco
  • Start date Start date
Z

Zeno Loco

Hi,

I'm planning an application with peculiarity the to have a big
communication activity between mobile devices and one or more servers.
I've read some articles and documentation and make some tests about
that, but I still not have a clear idea about how move myself.
Can you help me to understand :

.. what tecnology I can utilize to develop my application (I'm oriented
on async socket or HTTP download/upload)
.. how can I manage the line falling down in the middle of the
transmission?

Do you have some suggestions, samples, articles on the net, .... ?

Sorry for my terrible english and thank you.

Z.
 
Sockets will not support a "break" in the communication line ... this will
cause an exception to be thrown.

Take a look at using MSMQ. It was designed to support unreliable networking.
 
Back
Top