Hi! Currently I'm developing an application which will deal with the http connection. For the http connection, I will send out my request to download an image. The problem I'm facing right now is when there's no response back for my request, my whole application is hang. I totally unable to exit the application and need to reset the device all the time. Here, I would like to ask whether is there anyone can help me to handle the no response back for the http connection. I'm using the below method for my http connection.
HttpConnection connection = null;
connection = (HttpConnection)Connector.open(url,Connector.READ_WRITE);
DataInputStream iStrm = connection.openDataInputStream();
ByteArrayOutputStream mSrm = null;
int length = (int) connection.getLength();
mData = new byte[length]; mSrm.readFully(mData);
After opening the connector, I need to close the connector when receiving the response back from my request. If there's no response back, my connector is always open and this cause my application hang.
Is there way to close the connector if there's no response back from the request made to http connection?
Please help....
YHat
[div align=\"right\"][{POST_SNAPBACK}][/a][/div]
First of all. I am quoting Java 1.5, so some of this may or may not be applicable.
However, the docs for 1.5 are here:
[a href=\"http://java.sun.com/j2se/1.5.0/docs/api/]http://java.sun.com/j2se/1.5.0/docs/api/[/url]
I ussually use HttpURLConnection and not HttpConnection, so I am not sure of the differences since 1.5 has no HttpConnection class per se.
ANyway, I think the problem is in the URL class anyway, but upon searching the URL class I came up with nothing, however that lead me to loo at the URLConnection class (sorry, not sure how URLCOnnection Class and URL class work together) and I found this:
URLConnection.setConnectTimeout(int timeout)
Sets a specified timeout value, in milliseconds, to be used when opening a communications link to the resource referenced by this URLConnection.
My guess is that there is already a timeout on your connection but it is probably 2 or more minutes long, which of course is too much for you needs.
Anyway, this should give you a start, but you may need to upgrade to a FULL 1.5 implementation to use these classes (though there may very well be a similar funcatioanilty is the J2ME libs).
Regards.