windows moblie 5.0在托管程序中实现短信接收和拦截
曾经尝试只用.net cf 在手机(windows moblie 5.0)中实现短信的接收,而同时拦截手机本身的短信提示,代码如下:
private void Form1_Load(object sender, EventArgs e)
{
interceptor = new MessageInterceptor();
interceptor.InterceptionAction = InterceptionAction.NotifyAndDelete;
interceptor.MessageReceived += new MessageInterceptorEventHandler(interceptor_MessageReceived);
}
void interceptor_MessageReceived(object sender, MessageInterceptorEventArgs e)
{
SmsMessage msg = e.Message as SmsMessage;
this.txtMessage.Text ="发件人:"+msg.From.Address +",内容:" +msg.Body +"时间:"+msg.Received.ToString("yyyy年MM月dd日 MM时mm分ss秒")
}
上述程序是通过在窗体加载时委托一个拦截短信事件,虽然实现我想要的功能,但有个确定,当应用程序不处于被激活的状态,就无效了。后来在ms的网站上找到一份资料:Receiving SMS Messages Inside a Managed Application,可以来实现我想要的这个功能,原理简单来说是修改手机的注册表,手机短信程序启动后加载dll文件,把拦截规则注入,然后通过.net cf 程序来获得拦截的短信。本质上说,不是“拦截”,只是把短信直接删除到“废件箱”,仿佛“拦截”了。
实现条件:
1、安装Windows Mobile 5.0 Pocket PC SDK
2、 开发工具 vs2005
方法:
1、用vs ++ 2005 打开实例程序中的Mapirule(在D:\Program Files\.NET Compact Framework Samples\Receiving SMS Messages\Code\Mapirule中,假定你的安装目录是D:\Program Files),在这个提供的c++中只实现了“短信内容中”包含“zzz”字符的短信拦截,我修改了一下,可以实现对所有短信的拦截:
源代码 :mapirule.cpp
上述程序,改造一下,可以拦截垃圾短信
环境:在vs2005+windows mobile 5.0 +多普达818测试通过。
本文首发地址:http://www.watch-life.net/windows-mobile/windows-mobile-sms-received-mapirule.html
--------------------------------------------------------------------------------------
更多文章见:守望轩[http://www.watch-life.net]