iTP Active Transaction Pages (iTP ATP) Programmer's Guide

XML for ATP Add-On Module
iTP Active Transaction Pages (iTP ATP) Programmer’s Guide522292-002
5-58
XMLDOMEntityReference Object
Remarks
String. Read-only.
Syntax
strValue = oXMLDOMEntity.notationName
Example
var doc = new XML.DOMDocument;
doc.load("sample.xml");
var map = doc.doctype.entities;
println(map.item(4).notationName);
Output
ent1
publicId
Contains the public identifier of this entity. If the public identifier was not specified,
this contains an empty string.
Remarks
String. Read-only.
Syntax
strValue = oXMLDOMEntity.publicId
systemId
Contains the system identifier of this entity. If the system identifier was not
specified, this contains an empty string.
Remarks
String. Read-only.
Syntax
strValue = oXMLDOMEntity.systemId
XMLDOMEntityReference Object
The XMLDOMEntityReference nodes appears in the structure model when an entity
reference is in the source document, or when you wish to insert an entity reference. The
expansion of the entity appears as child nodes of the entity reference node. The
expansion may be just simple text, or it may be more complex, containing additional
entity references.
This object has no unique properties or methods of its own, but exposes the same objects
and properties as the XMLDOMNode Object
.