Binary Data

Rick Jelliffe ricko at allette.com.au
Sat Feb 21 02:44:14 GMT 1998



From: Michael Emmel <mike at jmaca.com>



>Is it possible to include binary data in a XML document  and follow the
>spec.


It is possible to have binary data in an XML *document* but it is not
possible
to have (unencoded) binary data in an XML text *entity*.  A document is
constructed from entities. An entity is usually a file. An entity is either
text
or binary (NDATA) but not both.

You can use Base64 encoding to stick non-text data inside elements:

<!DOCTYPE foo [
<!NOTATION base64 SYSTEM "put URL of base 64 code here, or omit this string"
...
]>
<foo>
...
<binary-data notation="base64">...</binary-data>
...
</foo>


CDATA marked sections are only a shorthand mechanism for data which has a
lot of
"&" or "<" characters which you might find tedious to delimit into entity
references.
It is not a mechanism for embedding raw binary, per se.

Rick Jelliffe


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list