vote up 12 vote down star

I have two applications written in Java that communicate with each other using XML messages over the network. I'm using a SAX parser at the receiving end to get the data back out of the messages. One of the requirements is to embed binary data in an XML message, but SAX doesn't like this. Does anyone know how to do this?

UPDATE: I got this working with the Base64 class from the apache commons codec library, in case anyone else is trying something similar.

flag

Genius! Just what I was looking for! – Jeremy Rudd Feb 2 at 10:23

9 Answers

vote up 25 vote down check

You could encode the binary data using base64 and put it into a Base64 element; the below article is a pretty good one on the subject.

Handling Binary Data in XML Documents

link|flag
vote up 15 vote down

XML is so versatile...

<DATA>
  <BINARY>
    <BIT index="0">0</BIT>
    <BIT index="1">0</BIT>
    <BIT index="2">1</BIT>
    ...
    <BIT index="n">1</BIT>
  </BINARY>
</DATA>

XML is like violence - If it doesn't solve your problem, you're not using enough of it.

EDIT:

BTW: Base64 + CDATA is probably the best solution

(EDIT2:
Whoever upmods me, please also upmod the real answer. We don't want any poor soul to come here and actually implement my method because it was the highest ranked on SO, right?)

link|flag
I just repeated that quote to my friend, and after he laughed, he said "and it is painful if directed at you" :) – kaybenleroll Sep 26 '08 at 16:58
This is nothing less than an utterly disgraceful use of XML if you're serious. And if you're not, how would beginners who don't write-high-level-think-low-level know? – Jeremy Rudd Feb 2 at 10:59
Jeremy...for a young 23 year old lad you're awfully serious/literal...you clearly haven't worked long enough in the industry to see why this is an amusing answer with a cautionary tale for the brave between the lines. – Kev Feb 2 at 11:53
1  
I would presume they would know by 1) how different this answer is from the big green one above with double the votes, and 2) by reading the rest of the thread where others point out how funny the joke is. – Mike Powell Feb 2 at 15:54
1  
@Mike - you woulda thought that....SO is rapidly becoming a breeding ground for egomaniacal humourless young pedants. – Kev Feb 2 at 18:44
show 1 more comment
vote up 3 vote down

Base64 is indeed the right answer but CDATA is not, that's basically saying: "this could be anything", however it must not be just anything, it has to be Base64 encoded binary data. XML Schema defines Base 64 binary as a primitive datatype which you can use in your xsd.

link|flag
vote up 1 vote down

Maybe encode them into a known set - something like base 64 is a popular choice.

link|flag
vote up 1 vote down

Try Base64 encoding/decoding your binary data. Also look into CDATA sections

link|flag
vote up 1 vote down

I usually encode the binary data with MIME Base64 or URL encoding.

link|flag
vote up 1 vote down

@(whoever downmodded Mo): Lighten up a little, that was hilarious (both the code and the quip). +1

link|flag
Yeah right, so we like to rank jokes as the best answers? Where's our sense of logic gone? – Jeremy Rudd Feb 2 at 10:57
Where's our sense of humour evaporated to? This was a closed beta days question....some leeway was allowed back then. Please re-insert humour module. – Kev Feb 2 at 13:39
vote up 1 vote down

You can also Uuencode you original binary data. This format is a bit older but it does the same thing as base63 encoding.

link|flag
vote up 0 vote down

@Mo - XML humour. Nice one. Modded up. :-)

link|flag
Come on you humourless gits....lighten up. This was an early answer before we all learned SO ettiquette... :) – Kev Feb 2 at 10:53
Yeah, but it does'nt deserve to rank as the '2nd-best' answer. That's misleading. – Jeremy Rudd Feb 2 at 10:57
So why downvote me? – Kev Feb 2 at 11:45
And it's hardly offensive...please re-boot humour humour/life module. – Kev Feb 2 at 11:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.