Try,
<!ATTLIST city CDATA #IMPLIED>
<!ATTLIST country CDATA #IMPLIED>
.
.
.
<address>
<city>Paris</city>
<country>FR<country/>
</address>
You are trying to get too fancy with your XML. Some platforms will not allow you to run an a multiword XML field like 'city country'. You...