Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Genius! Just what I was looking for! – Jarvis Feb 2 '09 at 10:23

11 Answers

up vote 86 down vote accepted

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

share|improve this answer

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?)

share|improve this answer
3  
@Mo - XML humour. Nice one. Modded up. :-) – Kev Aug 21 '08 at 14:00
3  
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? – Jarvis Feb 2 '09 at 10:59
1  
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 '09 at 11:53
4  
@Mike - you woulda thought that....SO is rapidly becoming a breeding ground for egomaniacal humourless young pedants. – Kev Feb 2 '09 at 18:44
5  
Oh for f***s sake. This was a joke. What did I do?!: thedailywtf.com/Articles/The-HumanReadable-Encryption-Key.aspx – Mo. Sep 18 '11 at 18:11
show 17 more comments

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.

share|improve this answer

I had this problem just last week. I had to serialize a PDF file and send it, inside an XML file, to a server.

If you're using .NET, you can convert a binary file directly to a base64 string and stick it inside an XML element.

string base64 = Convert.ToBase64String(File.ReadAllBytes(fileName));

Or, there is a method built right into the XmlWriter object. In my particular case, I had to include Microsoft's datatype namespace:

StringBuilder sb = new StringBuilder();
System.Xml.XmlWriter xw = XmlWriter.Create(sb);
xw.WriteStartElement("doc");
xw.WriteStartElement("serialized_binary");
xw.WriteAttributeString("types", "dt", "urn:schemas-microsoft-com:datatypes", "bin.base64");
byte[] b = File.ReadAllBytes(fileName);
xw.WriteBase64(b, 0, b.Length);
xw.WriteEndElement();
xw.WriteEndElement();
string abc = sb.ToString();

The string abc looks something that looks like this:

<?xml version="1.0" encoding="utf-16"?>
<doc>
    <serialized_binary types:dt="bin.base64" xmlns:types="urn:schemas-microsoft-com:datatypes">
        JVBERi0xLjMKJaqrrK0KNCAwIG9iago8PCAvVHlwZSAvSW5mbw...(plus lots more)
    </serialized_binary>
</doc>
share|improve this answer

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

share|improve this answer

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

share|improve this answer

Any binary-to-text encoding will do the trick. I use something like that

<data encoding="yEnc>
<![CDATA[ encoded binary data ]]>
</data>
share|improve this answer

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

share|improve this answer

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

share|improve this answer

Do not use base64 encoding as it increases the amount of data you need to store by at least 40%. Rather use other encoding methods like yEnc.

share|improve this answer

Here's a good example of how to proceed XEP-0239

PS: don't forget to read Mo's answer.

PS2: read the NOTICE section on the XEP.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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