Re: Configure xerces to accept '&' character

2008-02-19 Thread keshlam
In XML, a stand-alone & character must be escaped to keep it from being interpreted as introducing an entity reference or numeric character reference. See http://www.w3.org/TR/xml/#syntax Fix your input document. __ "... Three things see no end: A loop with exi

Re: Configure xerces to accept '&' character

2008-02-19 Thread Mukul Gandhi
To introduce ampersand character in the text node, it must be written as & If you write something as, ... &fs ... then &fs is interpreted as entity reference (and the entity must be defined somewhere). That's how the XML spec defines the language. On Feb 19, 2008 10:50 AM, ying lcs <[EMAIL PROTEC