XML Entity References
Some symbols cannot be used with XML because most XML parsers will choke on them usually throwing an error. So you must replace these symbols with their entity reference. An entity reference begins with an ampersand and ends with a semi-colon and in between includes a multi-character code that represents the original value.
Less than (<): replace with <
Greater than (>): replace with >
Ampersand (&): replace with &
Apostrophe ('): replace with '
Quotation mark ("): replace with "
Less than (<): replace with <
Greater than (>): replace with >
Ampersand (&): replace with &
Apostrophe ('): replace with '
Quotation mark ("): replace with "
Comments
Post a Comment