You are trying to use an HTML entity in a non-HTML or non-XHTML document. These entities are declared in the document's Document Type Definition (DTD).
You should use the numerical Unicode version of the entity reference. For example, in the case of » you should use »
Alternatively, you can either define them in your XML document's DTD:
<!ENTITY entity-name "entity-value">
<!ENTITY raquo "»">
Or
Otherwise, if your document is UTF-8, I believe you can just use the numerical Unicode version of the entity reference. For example, actual character directly in the case of » you should use »your XML document.
ยป
