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

The following Extensible Markup Language (XML) example that shows how to setup the security policy.

Copy Code
 <?xml version="1.0" encoding="utf-8" ?> 
...
<wap-provisioningdoc>
<characteristic type="SecurityPolicy">
<!--  =======================================
	Device options
	=========================================  --> 
<!-- 1-tier device --> 
  <parm name="4123" value="1" /> 
  <!-- Grant Manager Role to USERAUTH --> 
  <parm name="4119" value="16" /> 
<!--  =======================================
	Applications
	=========================================  --> 
<!--  Do not allow unsigned CABs to install --> 
  <parm name="4101" value="0" /> 
<!--  Do not allow unsigned apps to run  --> 
  <parm name="4102" value="0" /> 
<!--  Enable user prompts   --> 
  <parm name="4122" value="0" /> 
<!--  =======================================
	Configuration access
	=========================================  --> 
<!--  AutoRun Policy: 0  --> 
  <parm name="2" value="0" /> 
<!--  Grant User Authenticated Policy  --> 
  <parm name="4120" value="16" /> 
<!--   Allow unsigned themes to install with 
		 UserUNAUTH permissions  --> 
  <parm name="4103" value="64" /> 
<!--  =======================================
	Remote access
	=========================================  --> 
<!--  RAPI mode : Restricted   --> 
  <parm name="4097" value="2" /> 
<!--  =======================================
	OTA Device Managment 
	Should be the same in all cases.
	=========================================  --> 
<!--  Trusted Provisioning Server (TPS) Policy: enabled  --> 
  <parm name="4104" value="1" /> 
<!--  Message Authentication Policy: maximum 3 retries allowed 
--> 
  <parm name="4105" value="3" /> 
<!--  Service Loading Policy: PPG_TRUSTED   --> 
  <parm name="4108" value="2048" /> 
<!--   Service Indication Policy: PPG_TRUSTED | PPG_AUTH  
--> 
  <parm name="4109" value="3072" /> 
<!--   Unauthenticated Messages Policy: USER_UNAUTH   --> 
  <parm name="4110" value="64" /> 
<!--	 OTA Provisioning Policy: USER_AUTH | TRUSTED_PPG |
PPG_AUTH | 
		 PPG_TRUSTED | OPERATOR_TPS | OPERATOR   --> 
  <parm name="4111" value="3732" /> 
<!--  WSP Push Policy: enabled   --> 
  <parm name="4113" value="1" /> 
<!--   Trusted WAP Proxy Policy: OPERATOR | OPERATOR_TPS  
--> 
  <parm name="4121" value="140" /> 
<!--   DRM Policy: PPG_AUTH | PPG_TRUSTED -->
	<parm name="4129" value="1"/>

  </characteristic>

See Also