[EMAIL PROTECTED] writes: > Not all Unicode characters are valid in XML. See the recommendation for > the gory details: > > http://www.w3.org/TR/1998/REC-xml-19980210#charsets > > Any documents which claim to be XML, but contain illegal characters are not > really XML.
Yup. I just looked into that one. The production rule [2] Char (Character) defines the following as valid: 0x9 (tab) 0xa (line feed) 0xd (carriage return) 0x20 .. 0xd7ff 0xe000 .. 0xfffd 0x10000 .. 0x10ffff anything outside that and you have an invalid XML file. jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
