Hi!
I have been using SAXParser to read data from XML files on my server, and it works just fine.
However, if I lose internet connection on my computer, while my App is running, Android will stall and throw the "Force close" window; in fact, sometimes the emulator will simply stop responding to any keys, requiring me to close it entirely.
Is there any way I can handle a timeout on that operation (i.e., run some code if there is no response for X seconds).
Thanks!
PS - the code I'm using is very similar to the one shown on this tutorial:
parsing_xml_from_the_net_-_using_the_saxparser-t353.html


