Share via


Update and Add Standard WAP Connectivity

Updating and adding are accomplished through the parm element. If a setting with the same name and value designated by the name and value attributes exists, nothing is changed. If a setting does not exist, a new setting is created. The new setting is converted internally to the XML format shown in the following examples.

Example of adding a domain to a logical proxy

The following XML example adds a PXLOGICAL domain:

<wap-provisioningdoc>
   <characteristic type="PXLOGICAL">
      <characteristic type="163.187.51.4" mwid="1">
         <parm name="DOMAIN" value="www.adatum.com"/>
      </characteristic>
   </characteristic>
</wap-provisioningdoc>

Example of deleting a request

A delete request results in the server deleting the requested item. The following XML example shows how to delete one domain value:

<wap-provisioningdoc>
   <characteristic type="PXLOGICAL">
      <characteristic type="aa.bb.cc.4" mwid="1">
         <noparm name="DOMAIN" value="www.adatum.com"/>
      </characteristic>
   </characteristic>
</wap-provisioningdoc>

The following XML example shows how to remove a physical proxy:

<wap-provisioningdoc>
   <characteristic type="PXLOGICAL">
      <characteristic type="a3.bb.cc.4" mwid="1">
         <characteristic type="PXPHYSICAL">
            <nocharacteristic type="PROXY 1" mwid="1"/>
         </characteristic>
      </characteristic>
   </characteristic>
</wap-provisioningdoc>

The following XML example shows how to remove a Network Access Point (NAP) definition:

<wap-provisioningdoc>
   <characteristic type="NAPDEF">
      <nocharacteristic type="NAP1" mwid="1"/>
   </characteristic>
</wap-provisioningdoc>

See Also

Update Standard WAP Connectivity Parameters | parm Element

Send feedback on this topic to the authors.

© 2005 Microsoft Corporation. All rights reserved.