Hello all.
While working on a RFCOMM based PushRegistry, I realized the sad truth that not all platforms support it. I have a Nokia 6682. I guess S60 2ed. From other postings I read, I assume this one does not fully support the feature. I did a basic test using JAD file. The midlet installs fine, but not waking up on incoming BT connection. I also tried calling PushReg.registerConnection(). The call returns success, but again, the midlet is not waking up on incoming connection. So I have the following questions
1) How do I confirm whether 6682 has/has-not btspp pushreg support
2) Is it even possible to upgrade the OS on my handset ? (download/install new feature pack?) My handset is from ATT/Cingular, locked.
3) In case it is the problem on myside, here is the details.
The jad file has this line:
MIDlet-Push-1: btspp://:1,MyMidlet.MyMidlet,*
The other approach has this code in it
Code:try { PushRegistry.registerConnection("btspp://localhost:1", this.getClass().getName(), "*"); msg = "registerConnection OK"; }catch (Exception e) { msg = "registerConnection failed"; }
Any help would be greatly appreciated.
~b

Reply With Quote

