Try OpenEdge Now
skip to main content
Working with XML
Reading XML Documents with the Simple API for XML (SAX) : SAX API reference : SAX callback reference : UnparsedEntityDecl
 
UnparsedEntityDecl
Invoked when the XML parser detects an entity that it does not parse (where "unparsed entity" has the definition given in the XML 1.0 specification).

Syntax

PROCEDURE UnparsedEntityDecl:
DEFINE INPUT PARAMETER name AS CHARACTER.
DEFINE INPUT PARAMETER publicID AS CHARACTER.
DEFINE INPUT PARAMETER systemID AS CHARACTER.
DEFINE INPUT PARAMETER notationName AS CHARACTER.
name
A character string indicating the name of the entity.
publicID
Optional. A character string indicating the public identifier of the entity. If publicID is not supplied, the character string is of length zero.
systemID
Optional. A character string representing the system identifier of the entity. If systemID is not supplied, the character string is of length zero. systemID must be one of the following:
*Absolute file path
*Relative file path
*Absolute URI
notationName
A character string indicating the name of the notation associated with the entity.