Thanks for all the input... The way I solved it was to simply preprocess all the characters (which I had to do anyways) and cast all characters as such to integers, thus getting the unicode values.
Thanks for all the help, Ryan ----- Original Message ----- From: "Arnaud Le Hors" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 09, 2001 9:53 PM Subject: Re: unsupported characters in Xerces > Michael Ryan Bannon wrote: > > > > OK, stupid follow-up question...(I'm kinda new to Xerces/XML): > > > > How exactly does one add and entity to the subset? Please keep in mind I'm not > > validating against a DTD (since I don't have one). > > Ok. I'll make it very simple. The internal subset is the part of the DTD > that is between the square brakets in your DOCTYPE. If you don't have > any DTD you probably don't have any DOCTYPE either. > Simply add this at the top of your document (but after the XML decl if > you have one <?xml ....?>) > > <!DOCTYPE foo [ > <!ENTITY middot "·"> > ]> > > Where foo is the name of your root element. > -- > Arnaud Le Hors - IBM Cupertino, XML Strategy Group > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
