Please help me,
I have problem to close GPRS connection. I use Nokia 6630
When i use something like:
HttpConnection c = new HttpConnection.open(url);
InputStream is = c.openOutPutStream();
is.write(data);
is.close();
c.close();
//(of course in separate Thread)
Everything works well, but after the code has finished the GPRS connection is still open.
I need to close it in connection manager. How can i close GPRS connection form java? Or is something from above code wrong?

Reply With Quote


