I need to dial a contact that is already stored in the phone memor/SIM card. Can I use platformRequest() to do this and if yes what argument needs to be passed. The device is 6230i.
Thanks in advance
HQZ
I need to dial a contact that is already stored in the phone memor/SIM card. Can I use platformRequest() to do this and if yes what argument needs to be passed. The device is 6230i.
Thanks in advance
HQZ
HQZ,
Nokia 6230i supports PIM API. You must retrieve the contact information from the contacts database by using the JSR-75 (PIM API) and then pass the phone number to your MIDlet.platformRequest call.
Check the links below for more information.
Introduction To The PIM API (With Example) v1.1
http://www.forum.nokia.com/info/sw.n..._v1_1.zip.html
Invoking Platform Services in MIDP 2.0
http://developers.sun.com/techtopics/mobility/allttips/
Hope it helps!
BR,
Juarez Junior
juarezjunior,
Thanks for the quik reply. Yes I am aware of this option by looking into the phone book and them passing the phone number. But my question was more secifically if you can use the Contact's name or assigned speed dial, or something else and not having to supply the actual phone number to platformRequest.
Thanks
HQZ
The method described by juarezjunior is the only one available. You have to pass a phone number of the form "tel:<number>", as specified in RFC2806 to the platformRequest() call.
Hartti