I have a requirement for a mobile device application - a midlet
connecting to web server to use custom protocol over http and to
download content. How could the server-end servlet could "Sense" if
there is a breakage in communication due to mobiule going out of
coverage areas of GPRS network?
I have tried :
...if (Thread.interrupted())
{...} within doGet() method of servlet with out any effect.