Window Mobile 6(.NET) Remote Deletion & Detect Sim Card

I

I0ri

Hi. I need the source code(with explanation if possible) or any other
information/codes related for the remote deletion and detect sim card
function for Window Mobile 6 (Programming Language: .NET). Below is the use
case description of the 3 function for more info.

Need Help ASAP. Thanks.

1.)

Use Case Title: Remote Deletion (Individual)

Actors: Server and Mobile

Brief Description: To remote delete SMS, pictures, video, audio and other
files from the phone memory and removable storage media

Pre-Condition: The mobile must be installed with Mobile SafeGuard system.
The remote deletion will be executed when instruction is received from the
server.

Post-Condition: Mobile SafeGuard system will send an instruction back to the
server after the success of the deletion.

Basic Flow:

Mobile receives instruction from the server.

System will delete the respective files from the mobile.

Alternative Flow:

-nil-

2.)

Use Case Title: Remote Deletion (Folder)

Actors: Server and Mobile

Brief Description: To remote delete all the files in the folder from the
phone memory and removable storage media.

Pre-Condition: The mobile must be installed with Mobile SafeGuard system.
The remote deletion will be executed when instruction is received from the
server.

Post-Condition: Mobile SafeGuard system will send an instruction back to the
server after the success of the deletion.

Basic Flow:

Mobile receives instruction from the server.

System will delete the respective files in the folder from the mobile.

Alternative Flow:

-nil-

3.)

Use Case Title: SIM Card Detection

Actors: Server and Mobile

Brief Description: To detect change of SIM card and send SIM card and device
information to the server.

Pre-Condition: The mobile must be installed with Mobile SafeGuard system.
The system detects changes in SIM card and device information.

Post-Condition: Server will be updated with the new SIM card and device
information.

Basic Flow:

Mobile receives instruction from the server.

System sends new SIM card and device information to server.

Alternative Flow:

-nil-
 
N

Neil Cowburn

I need the source code(with explanation if possible) or any other
information/codes related for the remote deletion and detect sim card
function for Window Mobile 6 (Programming Language: .NET).

I'm assuming you mean "mobilesafeguard" from Codegate Ltd, right? It's
unlikely that anyone in this newsgroup is going to provide you with the
full solution that you require, for free, over the newsgroup.

If you were to phrase it as a RFP and provide some off-newsgroup
contact details, then you significantly improve your chances of
receiving a meaningful response.
 
B

Bjørn Brox

I0ri skrev:
Hi. I need the source code(with explanation if possible) or any other
information/codes related for the remote deletion and detect sim card
function for Window Mobile 6 (Programming Language: .NET). Below is the use
case description of the 3 function for more info.
....

Pre-Condition: The mobile must be installed with Mobile SafeGuard system.

If this SafeGuard system is the one you are going to implement you
simply set it up to get executed (or get an event of running in the
background) when your phone receives SMS message matching a predefined
rule (for example if coming from a specific phone number) by using the
MessageInterceptor class.

These messages can instruct the program to do whatever you want, and the
received message will never be notified to the user or stored in any
input box if set up correctly,

You find an example in the SDK.

http://msdn.microsoft.com/en-us/library/bb158721.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top