in reply to XML::Simple parser error : Input is not proper UTF-8, indicate encoding
I assume that in your weird notation
<CALLERID><A0>jW<B7>h<AE><F5><BF><8A>7a<B7><D8>T<D9>^N</CALLER +ID>
A0 etc in angles is equivalent to \xA0 in Perl, and ^N is equivalent to \cN in Perl. That last character (chr(14) == #x0E == U+000E) is illegal in XML.
You must encode binary data for XML, Base64 is a common choice.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: XML::Simple parser error : Input is not proper UTF-8, indicate encoding
by nvivek (Vicar) on Aug 17, 2012 at 05:31 UTC |