Username: Password:

Forgot password? Sign up


Sign up

Receive 5 free credits.
Easy to try, simple to use.


register

Test Network

+



WBXML script

Simple Perl script
#!/usr/bin/perl -w
use strict;
use XML::WBXML;

my $xml_file_data = "your_xml_file.xml";
while(){
    $xml_file_data .= $_;
}

#Converting from XML to WBXML
my $wbxml = XML::WBXML::xml_to_wbxml($xml_file_data);

#Converting to ASCII string of Hex values
my $data = unpack "H*", $wbxml;