Calling Card

Send Feedback

This code sample is named CallingCard. It demonstrates how to create an application that allows a user to make a calling-card phone call directly from the Contacts screen.

Feature Area

Relevant APIs

Usage

To run the code sample

  1. Navigate to the solution file (*.sln), and double-click it. By default, the solution file is copied to the following folder:

    C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Samples\CPP\Win32\Callingcard\``CallingCard.sln

    Microsoft Visual Studio 2005 launches and loads the solution.

  2. Build the solution (Ctrl+Shift+B).

  3. Deploy the solution (F5).

  4. Run the generated CAB file on the mobile device.

  5. Reboot the mobile device so that the settings take effect.

If you have not installed the SDKSamplePrivDeveloper certificate, you will need to so that your Dll and CAB projects are signed correctly.

To install the certificate from the windows desktop

  1. Click Start > Run.

  2. Type the path-name to SDKSamplePrivDeveloper.pfx certificate, and click OK. By default, this is located in the following folder:

    C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\Tools\
    
  3. Double-click the SDKSamplePrivDeveloper.pfx certificate icon. The Certificate Import Wizard appears.

  4. Click Next. The certificate path-name is filled-in.

  5. Click Next.

  6. Click Next (you do not need a password).

  7. Click Next. Accept the default options; automatically select the certificate store based on certificate type.

  8. 9. Click Finish.

See Mobile device Security Model for further details on how to install the SDK certificates onto the mobile device, and how to use the privileged SDK certificate to sign this application.

Registry settings

The calling-card registry settings are automatically provisioned by the CAB file. They are stored under the following registry key:

HKCU\Software\Microsoft\CallingCard

There are four values under this key:

  • Number
    [REG_SZ] The calling-card phone number.
  • Pin
    [REG_SZ] The calling-card Personal Identification Number (PIN). This must be a numeric value.
  • Pause1
    [REG_DWORD] The number of pauses between connecting to the calling-card service and the prompt for the PIN. Each pause is about two seconds long. A value of zero indicates that the phone application will wait for you to press Talk before sending the PIN.
  • Pause2
    [REG_DWORD] The number of pauses between inputting the PIN and the prompt for the number being dialed. Each pause is about two seconds long. A value of zero indicates that the phone application will wait for you to press Talk before sending the PIN.

Remarks

On a CDMA network, Pause1 should be zero because the phone transitions immediately into the Connected state.

You must press Talk to send the PIN to the calling card system.

The entire dial string is stored in the phone call history as clear text. Hence, there is no point in encrypting the PIN in the registry.

If any of these registry settings is missing or invalid, the softkey or context menus will not contain the new calling-card menu options.

You must install the SDKSamplePrivDeveloper.pfx certificate so that your DLL and CAB projects are signed correctly.

It is assumed that the DLL is registered as a Contacts Menu Extension, and that the calling-card registry settings are stored in:

HKCU\Software\Microsoft\CallingCard

Requirements

Pocket PC SDK: Windows Mobile 5.0 Pocket PC SDK.
Smartphone SDK: Windows Mobile 5.0 Smartphone SDK.
Development Environment: Visual Studio 2005.
ActiveSync: Version 4.0.

See Also

Code Samples

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.