Adding a Null Proxy Connection Example
4/8/2010
This example adds a null proxy connection named "NullProxy1" to the device. This proxy is used to ensure all traffic to the Internet metanetwork uses the PPP connection provisioned using the CM_PPPEntries configuration service provider below. The DestId parameter of the CM_PPPEntries characteristic and the SrcId parameter of the CM_ProxyEntries characteristic must match. The GUID used here matches the DestId parameter specified for a network defined using the CM_Networks configuration service provider.
This example creates a null proxy connection that appears in the user interface. **
Code Example
<characteristic type="CM_Networks">
<characteristic type="ISP: MSN">
<parm name="DestId"
value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
</characteristic>
</characteristic>
<characteristic type="CM_ProxyEntries">
<nocharacteristic type="HTTP-{ADB0B001-10B5-3F39-27C6-9742E785FCD4}"/>
</characteristic>
<characteristic type="CM_PPPEntries">
<characteristic type="InternetPPP">
<parm name="DestId" value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
<parm name="CountryCode" value="1" />
<parm name="AreaCode" value="425" />
<parm name="Phone" value="5550124" />
<parm name="UserName" value="USERNAME" />
<parm name="Password" value="PASSWORD" />
<parm name="Domain" value="DOMAIN" />
</characteristic>
</characteristic>
<characteristic type="CM_ProxyEntries">
<characteristic type="NullProxy1">
<parm name="SrcId" value="{C1D06580-B364-45ec-8421-5ACF34129C58}" />
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}" />
<parm name="Type" value="0" />
</characteristic>
</characteristic>
Remarks
One provisioning XML file typically contains configuration information for multiple Configuration Service Providers. To use this example, you must replace the values as appropriate, and add the node as a child of the OMA Client Provisioning file. **For information about the syntax of this file, see OMA Client Provisioning Files. For examples, see OMA Client Provisioning XML File Examples. **
See Also
Tasks
CM_ProxyEntries Configuration Service Provider Examples for OMA Client Provisioning
Reference
CM_ProxyEntries Configuration Service Provider
CM_PPPEntries Configuration Service Provider
CM_Networks Configuration Service Provider