in reply to Re^2: Encoding is a pain.
in thread Encoding is a pain.
The character versus data distinction is important. XML does have a way to express non-ASCII characters using the DTD as noted. For true binary data CDATA tags almost do it, but they're not foolproof since the binary data could contain sequences that would make the tag look like it ended before it really did. But you could encode using an agreed upon scheme, such as uuencode or base64 encoding and put that in CDATA tags. Ugly, but possible.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Encoding is a pain.
by grantm (Parson) on Sep 25, 2004 at 20:08 UTC |