hey,
I'm writing some app' that connects to some web site , downloads some info (simple text) ,and saves it to file on the phone.
The problem is that sometimes its works without any problems , and sometimes it pops error message :
"Exception processing async thread queue Exception processing async thread queue Timeout occurred while waiting for packet 1887. "
and the emulator get stuck.
i guess its connection problem , the net in my dorms is pretty slow, but before i install jdk and eclipse into some other comp, i wanna be sure that the problem is slow connection.
p.s
isn't "catch( IOException e )" suppose to solve connection problem?
here is the relevant part of the code :
try
{
bufReader = new BufferedReader( new InputStreamReader(theURL.openStream()));
do
{
bla bla
}
catch( IOException e )
{
System.out.println( e );
}
i added screen shot of the message.
thanks....

