Spredzy
Spredzy

Reputation: 5174

How to send sms to localhost in j2me?

Im not familiar with the J2me framework, I would like to know how to send a message to the local phone.

I am just developing an application, which set ExamDates and if I login this application and I have exam scheduled within 2 days I would like my app to send me an SMS letting me know that I have something schedule ...

I know how to send an sms but how to do it to locahost, I don't want to put my number in it, just want to send it to localhost. Is it possible ?

Thank you,

Upvotes: 0

Views: 602

Answers (1)

funkybro
funkybro

Reputation: 8671

Can't do this, I'm afraid!

Two options:

  • Set up a server somewhere which is capable of sending the SMS reminder at the right time for you, and communicate to that server from your MIDlet, to set the reminder

  • To achieve a "reminder" effect without using SMS, read up about the PushRegistry facility in MIDP, and its RegisterAlarm function.

Upvotes: 3

Related Questions