Decoding Base 64 binary xml

Zom

Zom

Associate
Joined
18 Oct 2002
Posts
1,117
How do I go about decoding this:

Code:
<?xml version="1
.0"?><m t="events/rg/tennis/stat/A" q="0" r="f"><dd="binary.base64">LjAyL3h5MTkwNy42MTouNi86MTowNy03LTYvOjI3Ljk3Ni4tfDExNy46LTY4Oi4uOi83Nzc1Ny83..MDotNy45MTcwOS4teXx7fHl6eHx8Ly0uOi80NTcuLi94LjY5Ny0yNzYvLDY=</d></m>

I've tried some online decoders and they just give me a load of garbage back.
 
I think the first thing to check is if the input from the XML file isn't garbage in as when you decode it it'll be rubbish anyway! Especially since you have tried several decoders already...
 
Do you know what format the data should be in? If it was encoded as base64 then it's more than likely that it's just raw binary of some form; this is the standard way of embedding binary in XML.
 
Back
Top Bottom