I do this in a Nokia 6233 (only in real device, in emulator I have not problem):
HttpConnection conn = (HttpConnection)Connector.open(url);
InputStream is = conn.openInputStream();
I want to get the data from HttpConnection while the data is being downloaded, a streaming of images using mjpeg. But openInputStream blocks forever. I make other connections the same way without problem, but these connections are not "permanent", and are closed quickly.
Could anybody help me, please

Reply With Quote

