• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

IMEI Access

 
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We need access to IMEI number for Mobile phones on J2ME MIDP 2.0 application. The search results says it is not possible but is there any work around to access IMEI?

Thanks
Jignesh
 
Ranch Hand
Posts: 81
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello there,

As far as I know it's not in MIDP 1 or 2 but it depends on the device and manufacturer. Try these:

Sony Ericsson
System.getProperty("com.sonyericsson.IMEI")

Motorola:
System.getProperty("phone.imei")
or
System.getProperty("device.imei")
or
System.getProperty("IMEI")

Siemens:
System.getProperty("com.siemens.IMEI")
or
System.getProperty("com.siemens.mp.IMEI")

Nokia is acessible only when using Symbian/Series 60 C++, I guess.

[]'s

Juarez Junior - Brazil
SCPJ2/SCWCD/SCBCD/SCMAD/SCEA Part I/SCAJ (awaiting results)
 
Jignesh Gohel
Ranch Hand
Posts: 276
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi ,
I'm looking for a way to identify a J2ME MIDlet and the cellphone where this MIDlet is installed.
I know that some phones like Nokia and siemens give the possibility to get the IMEI code using "system.getproperty(com.siemens.imei)" and something like for Nokia.

I need a way to identify every kind of cellphone, not only Nokia and Siemens. So now my question:

API Bluetooth for J2ME are available. Every bluetooth device has its own Unique Idenfier Code(48bit). Can i get this code of 48 bit from my MIDlet?
There is any other unique code (like Mac Address) i can get using my MIDlet?

Thanks,
Jignesh
 
Ranch Hand
Posts: 346
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IMEI not in MIDP ..


Future in PersonalProfile but its not in there yet..

ie no IMEI on MIDP or J2ME
 
reply
    Bookmark Topic Watch Topic
  • New Topic