sim

SIM Application Toolkit development

Hi, I'm designing a client/server cellular application, and am considering using SIM Application Toolkit for part of it. Where are there good resource to get started with learning the technologies available for SIM cards? I'm more interested in understanding the benefits of existing technologies, their percent of the installed base,...

Sim Based application

Hi I have to design a simple application which has to reside in the SIM card of a GSM mobile. But I dont have any idea how to get started. Till now I have only designed apps using J2ME. Do I need Java Card for SIM based app? Thanks in advance for the help. ...

JSR 177 Support on Blackberry

I have been trying to interact with SIM application through APDU exchanges. For exchanging APDUs, I had to create an APDUConnection through Connector.open() API, but this particular API throws up an IO exception stating "JSR 177 is not supported on this platform", I dont know whether this happens because I test this on simulator or wheth...

Authorize.net, SIM (php), and adding variable tax for in-state purchase

I am helping a client with a simple "shopping cart" using SIM through authorize.net. Limited number of items, they don't change, really don't need a full-on shopping cart, EXCEPT that we must charge tax to Colorado customers (and we'd like to vary the shipping method, based on whether they need it fast or slow or international). Obviousl...

Using sim() with lmer()

I have run two multilevel logistic regressions using the same predictors but on two different responses: fruitMLM <- lmer(InsuffFruit ~ Income + HDI + Income:HDI + (1 + Income | Country),family=binomial(link="logit")) fuelMLM <- lmer(Pollution ~ Income + HDI + Income:HDI + (1 + Income | Country),family=binomial(link="logit")) Income...

getLine1Number return null but not always....

I use the telephony manager to get the phone number, in the sdk all works perfectly, on some devices like my hero with 1.5 it returns null, on the tattoo with 1.6 it works but on some other tattoos it returns null... I start to get crazy... why is this happening? Is there is another way for get the phone number? ...

Find incoming call's IMSI

I am trying to find out if there is a way to detect the IMSI # of a phone that is calling you. So say for example, caller A calls person B- person B wants to know A's imsi #. I thought I read this information is transmitted to the MSC- is there a way to ask the MSC for that information? ...

Android: how to add a contact to the SIM using the SDK?

Hello. I am writing an application which writes contacts in the SIM card of an Android phone. I am stuck at the point where the phone number is added: an exception occurs with no apparent reason. Here is a snippet of code. import android.app.Activity; import android.content.ContentResolver; import android.content.ContentUris; import an...

Android: how to access the SIM contact table using the SDK?

I am trying to use this query to read the contacts on the SIM. cur = managedQuery(Uri.parse("content://icc/adn") ,null ,null ,null ,null ); The application has READ_CONTACTS and WRITE_CONTACTS permissions. Yet, the query returns an exception. ...

Android: Accessing Contacts from SIM card memory

I've been tryin to develop an app which requires to access contacts from SIM memory. Here is the code i've used but there is runtime exception. { Uri simUri = Uri.parse("content://icc/adn"); c=getContentResolver().query(simUri, null, null, null, null); startManagingCursor(c); getContacts(); } private void ge...

Phone code to find SIM Number

Is there a code that can retrieve the sim number ? I mean not IMEI but the my own phone number i call from. Like for IMEI there is *#06# , is there one for finding the sim number? Thanks ...