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 example shows how to use the APPLICATION configuration service provider to create a POP3 account with SMTP.

Code Example

Copy Code
<wap-provisioningdoc version="1.1">
  <characteristic type="APPLICATION">
	<parm name="APPID" value="110" />
	<parm name="PROVIDER-ID" value="MyPOPMail" />
	<parm name="TO-NAPID" value="IAP1" />
	<characteristic type="APPADDR">
	 <parm name="ADDR" value="pop.mail.com" />
	 <characteristic type="PORT">
		<parm name="PORTNBR" value="110" />
	 </characteristic>
	</characteristic>
	<characteristic type="APPAUTH">
	 <parm name="AAUTHNAME" value="IncomingName" />
	 <parm name="AAUTHSECRET" value="Password" />
	</characteristic>
  </characteristic>
  <characteristic type="APPLICATION">
	<parm name="APPID" value="25" />
		<parm name="PROVIDER-ID" value="MyPOPMail" />
	<parm name="TO-NAPID" value="IAP1" />
	<parm name="FROM" value="someone@example.com" />
	<characteristic type="APPADDR">
		 <parm name="ADDR" value="out.mail.com" />
		 <characteristic type="PORT">
			<parm name="PORTNBR" value="25" />
		 </characteristic>
	</characteristic>
	<characteristic type="APPAUTH">
		 <parm name="AAUTHNAME" value="OutgoingName" />
		 <parm name="AAUTHSECRET" value="Password" />
	</characteristic>
  </characteristic>
</wap-provisioningdoc>

Remarks

For the device to decode correctly, provisioning XML that contains the APPLICATION characteristic must support OMA Client Provisioning version 1.1.

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