wbxml

xml to wbxml conversion for activesync in iOS

∥☆過路亽.° 提交于 2019-12-24 09:00:01
问题 I have been trying to built an app which will communicate with MS-ActiveSync Exchange. I am stuck at the provisioning part. I need to send a post HTTP request with WBXML content in body. But I could not find anything anywhere to convert xml to wbxml for active sync. There are some C based libraries available like wbxml2, but can I use them for active sync. There are no code pages provided in the library as mentioned in MS-Activesync Exchange documentation. Please help!!! 回答1: Use libwbxml.

Decoding a WBXML SyncML message from an S60 device

独自空忆成欢 提交于 2019-12-04 14:00:02
问题 I'm trying to decode a WBXML encoded SyncML message from a Nokia N95. My first attempt was to use the python pywbxml module which wraps calls to libwbxml. Decoding the message with this gave a lot of <unknown> tags and a big chunk of binary within a <Collection> tag. I tried running the contents of the <Collection> through by itself but it failed. Is there something I'm missing? Also, does anyone know of a pure python implementation of a wbxml parser? Failing that a command line or online

Decoding a WBXML SyncML message from an S60 device

老子叫甜甜 提交于 2019-12-03 08:51:21
I'm trying to decode a WBXML encoded SyncML message from a Nokia N95. My first attempt was to use the python pywbxml module which wraps calls to libwbxml. Decoding the message with this gave a lot of <unknown> tags and a big chunk of binary within a <Collection> tag. I tried running the contents of the <Collection> through by itself but it failed. Is there something I'm missing? Also, does anyone know of a pure python implementation of a wbxml parser? Failing that a command line or online tool to decode these messages would be useful -- it would make it a lot easier for me to write my own...