hi,
Can any one please help me in retrieving the IMSI number from the mobile using j2me Api's.
and If it is possible i want to whether it is possible for all device or only for limited number of devices.
regards,
vinod.
hi,
Can any one please help me in retrieving the IMSI number from the mobile using j2me Api's.
and If it is possible i want to whether it is possible for all device or only for limited number of devices.
regards,
vinod.
Hi Basu,
IMSI as far as i know can only be got from motorola. But if you want to know more about IMEI, it is vendor specific.
a) Nokia = System.getProperty("com.nokia.mid.imei");
System.getProperty("com.nokia.IMEI");
System.getProperty("phone.imei");
b) Samsung
System.getProperty("com.samsung.imei");
c) Sony-Ericsson
System.getProperty("com.sonyericsson.imei");
all the above methods return a string or null if they cannot find the package.
For IMSI,
System.getProperty("IMSI") returns the string. AFAIK, we had success only on motorolas with the IMSI
Regards
Shree
Sreekanth Bellur,
Symbian C++ Developer,
Ravensoft Ltd.,
Manchester,
United Kingdom