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]
