Hi,
My goal is to send a syncml ota sms setting to devices for auto config.
I've managed to do the following:
- create the syncml.xml file
- convert it to syncml.wbxml using xml2wbxml
- sending it over sms to my devices (nokia 6021,6085,n73)
- saving and activating syncml-sms on my devices
my problem is that when I try to sync I get an error that complain about invalid contact URI.
I've looked into the sync profile (which was created my the received ota) in my n73 and found that the 'Remote Contact DB' is set to './contacts' instead of 'card'.
my syncml.xml below define URI='./contact' and NAME='card'
seems that the xml2wbxl encoder puts NAME='./contact'
if I put URI='card' then the device sync profile shows 'Remote Contact DB'=card and the sync operation is running without any problem.
But this fix-around is wrong and should NOT be like that.
Any help is welcome
<?xml version="1.0"?>
<!DOCTYPE wap-provisioningdoc PUBLIC "-//WAPFORUM//DTD PROV 1.0//EN" "http://www.wapforum.org/DTD/prov.dtd">
<wap-provisioningdoc version="1.0">
<characteristic type="BOOTSTRAP">
<parm name="NAME" value="test"/>
</characteristic>
<characteristic type="APPLICATION">
<parm name="APPID" value="w5"/>
<parm name="NAME" value="test"/>
<parm name="TO-NAPID" value="INTERNET" />
<parm name="ADDR" value="http://x.x.x.x" />
<characteristic type="RESOURCE">
<parm name="URI" value="./contacts"/>
<parm name="NAME" value="card"/>
<parm name="AACCEPT" value="text/x-vcard"/>
</characteristic>
<characteristic type="APPAUTH">
<parm name="AAUTHNAME" value="test"/>
<parm name="AAUTHSECRET" value="1234"/>
</characteristic>
</characteristic>
</wap-provisioningdoc>
* I get the same problem when using nowsms on XP
Regards
Assaf



