Is there way to get IMSI of SIM card in WRT widget?
I see we can get IMEI using
function getIMEI(){
var systemServiceObj = device.getServiceObject("Service.SysInfo", "ISysInfo");
// Initialize the criteria for the service object and obtain the
// information
var criteria = new Object();
criteria.Entity = "Device";
criteria.Key = "IMEI";
try {
var result = systemServiceObj.ISysInfo.GetInfo(criteria);
alert("IMEI: " + result.ReturnValue.StringData);
} catch (ex) {
alert(ex);
return; }
}
How about IMSI?

Reply With Quote


