Special Characters and XML Strings
XML has a special set of characters that cannot be used in normal XML strings. These characters are:
- & - &
- < - <
- > - >
- " - "
- ' - '
For example, the following XML string is invalid:
<Organization>IBM & Microsoft</Organization>

