BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 06-23-2008, 11:23 PM   #1
skynetchris
Knows Where the Search Button Is
 
Join Date: Apr 2008
Model: 7100T
PIN: N/A
Carrier: optus
Posts: 24
Default Battery - HTTP connection lost problem.

Please Login to Remove!

I have a connection running in a thread that sends data back via a http connection. When the battery is in critical and radio is turned off, the connection is lost. This issue has been discussed before.

The thread contains the http connection as follows:

Code:
StreamConnection connection = (StreamConnection)Connector.open(rawUrl);
HttpConnection httpConn = (HttpConnection)connection;
The problem of auto-establishing the connection again seems to be more difficult than I first thought. I assumed I could just stop the thread gracefully (does this remove the instance of the thread? I assume so).

Code:
if (stop){
   return;
}
This all goes fine in the simulator, the thread stop and then re-starts (due to a programatic check on battery & when data needs to be sent).

Code:
if (sendThread != null)
{
   if (!sendThread.isAlive())
   {
      sendThread = new SendThread(url);
      sendThread.start();
    }
 }
 else
 {
    sendThread = new SendThread(url);
    sendThread.start();
 }
However, because radio is also switched off when in critical battery, and NOT automatically turned back on when it returns to 'good', the connection never takes place.

So my question is, how would you programattically check and re-establish GPRS/http connection. Would it be via the Radio class in the BB API? Do you think this will resolve the issue?

I was thinking something like:

Code:
if (GPRSInfo.getGPRSState() == GPRSInfo.GPRS_STATE_IDLE)
{
   Radio.activateWAFs(someIntegerHere);
}
Anyone else come across and solved this?

Last edited by skynetchris; 06-23-2008 at 11:26 PM..
Offline  
Old 06-24-2008, 12:38 AM   #2
shraddha294
Thumbs Must Hurt
 
shraddha294's Avatar
 
Join Date: Oct 2007
Location: Hyderabad
Model: 8800
PIN: N/A
Carrier: TMobile
Posts: 111
Default

I faced this issue... the battery getting good didn't turn on radio and didnt get any API to turn on radio. I couldn't find anyway to switch on the radio programatically. Either a device restart or manual turning on of radio was needed.

We just prompt user to switch on radio to proceed with app...
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Voltage Electricity Tester Volt Detector Test Pen AC Non-Contact Sensor 90-1000V picture

Voltage Electricity Tester Volt Detector Test Pen AC Non-Contact Sensor 90-1000V

$15.94



LED AC Electric Voltage Power Detector Sensor Tester Non-Contact Pen 12-1000V picture

LED AC Electric Voltage Power Detector Sensor Tester Non-Contact Pen 12-1000V

$12.49



12V Digital LED Display Voltmeter Voltage Gauge Panel Meter for Car Motorcycle picture

12V Digital LED Display Voltmeter Voltage Gauge Panel Meter for Car Motorcycle

$6.49



Power Queen 500A Battery Monitor with Shunt High Low Voltage Programmable Alarm picture

Power Queen 500A Battery Monitor with Shunt High Low Voltage Programmable Alarm

$57.99



12-1000V Dual Sensitivity Electrical Tester Pen Non-Contact AC Voltage Detector picture

12-1000V Dual Sensitivity Electrical Tester Pen Non-Contact AC Voltage Detector

$13.99



100A AC Meter Ammeter Volt Energy Voltage Power LCD Display Monitor Panel picture

100A AC Meter Ammeter Volt Energy Voltage Power LCD Display Monitor Panel

$17.09







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.