CSP - configuration service provider question

  • Thread starter Thread starter Francesco
  • Start date Start date
F

Francesco

Hi everybody.
I'd like to understand if it's me doing something worng or if it is a
common problem:
I need to use CSP to setuo my pda device, but I tried many xml
strings: creating connections, deleting connections, exporting
configuration, etc... I used principally CM_MAPPINGS, CM_GPRSENTRIES,
CM_PPPENTRIES, but no one of the xml strings I used changes something
in the configuration. Sometimes the error code is 0 (correct),
sometimes it is some number != 0, but always anything changes in the
configuration. ...And I'm sure the xml strings I use are correct.
I tested CSPs on an HP iPAQ 5550 and on an Intermec 700, with the same
results.

Maybe in this models the CSP functions are disabled? does anyone used
CPS succesfully with these or other PDA?

let me know.
Thanks
Francesco
 
Can you post a copy of the XML you are passing in along with the XML that
gets returned? It should work...

Btw, I find it easier to debug my XML using the SDK's "rapiconfig" tool
rather than using an app on the device.


--
Robert Levy
Program Manager
Mobile Devices Product Group
http://blogs.msdn.com/windowsmobile

This posting is provided "AS IS" with no warranties, and confers no
rights.
 
here I am. Sorry for the delay, I took some days of holiday, now I'm
back to work:

I also use rapiconfig to test xml strings; here are some tries
Xml input:
<wap-provisioningdoc>
<characteristic type="CM_GPRSEntries">
<characteristic type="GPRS2">
<parm name="DestId" value="{436EF144-B4FB-4863-A041-8F905A62C572}" />
<parm name="DeviceName" value="Bluetooth Dialup Modem" />
<parm name="DeviceType" value="RASDT_Modem" />
<parm name="Phone" value="*99#" />
<parm name="SwCompression" value="1" />
<parm name="IpHeaderCompression" value="1" />
<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="web.omnitel.it" />
<parm name="GPRSInfoDataCompression" value="1" />
<parm name="GPRSInfoHeaderCompression" value="1" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>

the answer of rapiconfig is:
Config failed (0x80004005): Errore non specificato. [unspecified
error]
And there is no xml output.

If i use this string:
<wap-provisioningdoc>
<characteristic-query type="CM_GPRSEntries" mwid="1"/>
</wap-provisioningdoc>

which,if I'm not wrong, should give me info about the existing GPRS
entries in my pda. Even if I got some working GPRS entries (made
through normal UI), the output string is:
<wap-provisioningdoc>
<nocharacteristic type="CM_GPRSEntries" mwid="1"/>
</wap-provisioningdoc>


I can't understand what's wrong... the string I use to create my GPRS
entry seems correct!!
Waht do you think about?
Thanks
Francesco
 
Back
Top