Inserting connection

  • Thread starter Thread starter r
  • Start date Start date
R

r

Hi,
I would like to give myu customers an automated way to insert a
connection to the pocket pc so they would be able to connect to the
internet after a hard reset.
I am using CF.
Could anyone point me to the right direction?
thanks in advance
 
If it's a PPC Phone Edition device it will support the Xml configuration
API. You can build an xml document to describe your connection and build a
..cpf file - like a cab but purely for deploying xml configuration. You will
need to refer to the SDK documentation for the specific settings for your
connection type - GSM/GPRS etc for example for GPRS you might have something
like this:-

<wap-provisioningdoc>
<characteristic type="CM_GPRSEntries">
<characteristic type="GPRS1">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-
8F905A62C572}" />
<characteristic type="DevSpecificCellular">
<parm name="BearerInfoValid" value="1" />
<parm name="GPRSInfoValid" value="1" />
<parm name="GPRSInfoProtocolType" value="2" />
<parm name="GPRSInfoL2ProtocolType"
value="PPP" />
<parm name="GPRSInfoAccessPointName"
value="internet3.thephone-company.com" />
<parm name="GPRSInfoAddress"
value="" />
<parm name="GPRSInfoDataCompression"
value="1" />
<parm name="GPRSInfoHeaderCompression"
value="1" />
<parm name="GPRSInfoParameters" value="" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>

See the topic - creating a CAB provisioning Format (.cpf) File in the SDK
documentation for details on how to build this into a cpf which you can tap
to install (or run as part of an autorun script)

Peter
 
Back
Top