The XmlReader class / om.XmlReader methods |
Returns the name of an unresolved entity.
skippedEntity() RETURNING result STRING
The skippedEntity() method returns the name of the unresolved entity, in the SkippedEntity event context.
The parser identifies well know character entities such as & / ' / < / > / ", other character entities are treated as skipped entities and can be processed in the SkippedEntity event.
DEFINE r om.XmlReader, e STRING ... LET e = r.read() WHILE e IS NOT NULL CASE e ... WHEN "SkippedEntity" DISPLAY "Entity:'",r.skippedEntity(),"'" ...