Questions tagged [wbxml]

WAP Binary XML (WBXML) is a binary serialization of the XML Infoset.

WAP Binary XML (WBXML) is a binary representation of XML (see XML Infoset). It was developed by the WAP Forum and is now maintained by the Open Mobile Alliance as a standard to allow XML documents to be transmitted in a compact manner over mobile networks

libwbxml is a library to encode and decode WBXML documents.

kxml is a java parser for WBXML.

23 questions
7
votes
2 answers

Pure WBXML encoding for PHP?

Is there a native PHP wbxml API that can be used platform-independently? Perhaps a loadable module? I have seen the pecl implementations but I have not been able to successfully work with the builds on win32 platforms.
Olaseni
  • 7,698
  • 16
  • 44
  • 68
4
votes
2 answers

WBXML parser to use for Active Sync implementation

Looking for a open source WBXML parser/writer to use with active sync . Do you know a good one ? (JAVA)
SuperNova1054
  • 319
  • 3
  • 8
3
votes
3 answers

Decoding a WBXML SyncML message from an S60 device

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 tags and a big chunk of binary within a…
J.D. Fitz.Gerald
  • 2,977
  • 2
  • 19
  • 17
2
votes
1 answer

Fully functional SyncML compliant WBXML encoder-decoder?

Is there any WBXML encoder-decoder available which is atleast fully compliant for SyncML 1.2 ?
this. __curious_geek
  • 42,787
  • 22
  • 113
  • 137
2
votes
0 answers

kxml doens't parse wbxml to xml correctly

I used to parse a wbxml traffic comes to my android device. i use kxml parser to print out the contents, but parser says me there isn't any string or attributes to show. where am i wrong ? public static void main(String[] args) throws…
m.ahmadi
  • 21
  • 1
2
votes
1 answer

Create an ActiveSync SendMail request in python

I am trying to implement simple EAS client functionality in python and making use of this library: https://code.google.com/p/py-eas-client/ I can successfully Provision, FolderSync, Sync, and Fetch to read messages and download attachments. The…
decentjam
  • 81
  • 5
1
vote
1 answer

Undocumented Exchange ActiveSync status while syncing

I'm trying to build a simple Exchange ActiveSync client. I'm using a simple Python script that sends an initial sync email command, while connecting to an Exchange 2010 SP1 . In the request body I'm send the following XML encoded as WBXML (using…
NTB
  • 89
  • 2
  • 11
1
vote
0 answers

calculating mac for wsp header

I am trying to get mac value for wsp header, according documentation S40 OMA client Provisioning doc, page 36 of Appendix B (http://sorrytesting.googlecode.com/files/Series_40_DP_2_0_OMA_Client_Provisioning_v1_3_en.pdf) 1) I 've got this wbxml: 1. I…
Mike Sange
  • 11
  • 1
1
vote
2 answers

xml to wbxml conversion for activesync in iOS

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…
1
vote
1 answer

Kxml2 How to convert xml to wbxml?

I have configured the tag_tables. But the issues it that conversion is not happening for the namespaces. Any help?
jindal
  • 248
  • 1
  • 2
  • 7
0
votes
1 answer

Libwbxml compiling on Win32 environment

I've downloaded libwbxml source package from http://sourceforge.net/projects/libwbxml/files/libwbxml/0.11.0/ and followed instructions in the INSTALL file, trying to compile it for Windows environment. However, everytime I build the solution (I'm…
Alexandre Bodi
  • 344
  • 2
  • 12
0
votes
1 answer

How to decode wbxml into human-readable format?

I am getting a request/response from API of an application using Flidder. Flidder shows an strange string that I think it is encoded to wbxml. I googled a lot and finaly I gived up finding an application or site or C# library to decode my…
Parsa
  • 7,995
  • 2
  • 27
  • 37
0
votes
1 answer

Microsoft EAS Sync Command

My initial request is POST : /Microsoft-Server-ActiveSync?User=XXXX&DeviceId=XXX&DeviceType=XXX&Cmd=Sync
Dipen Patel
  • 911
  • 2
  • 9
  • 22
0
votes
1 answer

Convert WBXML to XML in Java

How can I convert WBXML (WAP Binary XML) data to XML in Java?
maach
  • 15
  • 7
0
votes
1 answer

Sendmail request fails on mime data

I am working on a C# based ActiveSync client and am running into issues when I am trying to post the Sendmail command to the server. I am testing with mime data in the following format: var testMsg = @"From: a@b.com To:…
Michael Sabin
  • 1,679
  • 1
  • 20
  • 33
1
2