Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

Provisioning VoIP settings on a Windows Mobile device involves 3 steps:

  1. Create an OMA Client Provisioning (OMA CP) provisioning XML file.

  2. Deliver the provisioning XML file to the device.

  3. Invoke the Configuration Manager, which will call the VoIP Configuration Service Provider to process this provisioning XML file and eventually make.

You can provision a Windows Mobile device to configure the following VoIP settings:

Setting Description

SIPSettings

Specifies the available SIP servers.

VoicemailSettings

Specifies the Voice Mail servers

VoicemailNumber

The access number used to retrieve the VoIP voice mail.

BackupSIPsettings

Specifies backup SIP server.

DialPlan

Defines a set of dialing rules to convert user dialed strings into a format which is understood by the SIP server.

A VoiP provisioning XML file will have the following format:

Copy Code
<wap-provisioningdoc>
   <characteristic type="VoIP">
		<parm name="SIPsettings"  value="SIPSettings Value"/>
		<parm name="VoicemailSettings"  value="VoicemailSettings
Value"/>
		<parm name="VoicemailNumber" value="VoicemailNumber
Value"/>
		<parm name="BackupSIPsettings" value="BackupSIPSettings
Value"/>
		<parm name="DialPlan" value="DialPlan Value"/>
   </characteristic>
</wap-provisioningdoc>

The values for the SIPSettings, VoicemailSettings, BackupSIPSettings, and Dialplan parms are strings containing the specified information in XML format.

See Also