The Power To Message

Regístrate Ahora

Es fácil y rápido y recibirás un bono de 5 créditos sin costo.

register

Ver también:


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;