Background app and SMS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello!

I've got to write an application for smartphone that needs to run background
(it's behaviour will be like an windows service).

It'll will receive every SMS that is sent to the device, process it, and
send another SMS, in response to the one it's read. All messages will be
logged into a xml file.

I'd like to know if some has done this before, and if it's possible to do.
If so, which issues I might find on my way?

Thanks
 
To manage SMS for Mobile Device you should use Windows Mobile-based
Messaging API [1], [2]. Due to the fact that CF1.0 does not support COM
you need to write a native component which will provide all required
functions for your CF.NET application.

Native component or wrapper can be written using eVC that freely
available for download here:
http://www.microsoft.com/downloads/...3d-50d1-41b2-a107-fa75ae960856&DisplayLang=en

[1] http://msdn.microsoft.com/library/en-us/APISP/html/sp_cemapi2_ayvw.asp
[2] Mastering CEMAPI:- http://www.developer.com/ws/pc/article.php/3381221
 
Back
Top