Hello
I need to parse a XML document, but the document contains the next field:
<data encoding="base64" compression="gzip">
H4sIAAAAAAAAAGNgGDyAEY2GASYgZsZCwwAzVA86zYDEZ4KykWkQAAC47fiyAAEAAA==
</data>
So, my problem is decoding the data, with "base64" encoding, and "gzip" compression.
How can i decode this data?, Is this job for the xml parser? or, Must i do this using other libraries (independently of xml api)?
Thanks for your help.