views:

71

answers:

1

I want to run an application on another mobile without any external interaction using SMS from another mobile. Is that possible, and how to do that?

No, I don't want to the user to open the SMS and launch the application, no point of it then, I wan't something like remote motor operating using SMS.

Any ideas?

Can we send SMS from any CDMA/GSM mobiles to a particular port for another mobile?

+2  A: 

Hello,

If you use WMA push it can be possible. Please see MIDP 2.0 Push Registry article to understand what is push and how to use it.

Wonil
how to get the port for the SMS?
Priyank Bolia
You get the port on mobile phone SMS just like you would any desktop socket: either hardcode it and risk it being already used or try a range of ports until you find one that works and communicate it to a remote central repository.
QuickRecipesOnSymbianOS
@QuickRecipesOnSymbianOS Hi, can I also send SMS to another mobile at that port to which I binded.
Priyank Bolia
Once you have a "server" MIDlet on a phone bound to one of its own local port, any other phone can send SMS to that port. Look at the WMA example code.
QuickRecipesOnSymbianOS