views:

788

answers:

1

Reading around Nokia forums, It seems that accessing Cell-ID and related info from Nokia S40 series phones is virtually impossible unless your Midlet is signed, and even this would work only for S40 3rd Edition FP1 and above.

I tried the following on a Nokia S40 Dev Platform 2 phone , using Java ME:

System.getProperty("com.nokia.mid.cellid");

however the value returned was null.

Is there any work around to this, can the Cell-ID be read by other methods, like Modem AT(I guess this will only work with a phone connected to the pc), Sim application Toolkit or other?.

+1  A: 

And even if it is S40 3rd Edition FP1 (or above) and signed - it has to be signed by Nokia! (really). I don't know about other workarounds, but I have also tried JSR-179 and failed to do this.

Orr Matarasso
Around the forums they have mentioned that through the WMA api you can use CBS to get a string that contained information about the Cell-ID. Any ideas?
Kevin Boyd