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-60
Properties
Properties
publicId
Contains the public identifier of this notation. If the public identifier was not
specified, this contains an empty string.
Remarks
String. Read-only.
Syntax
strValue = oXMLDOMNotation.publicId
Example
var doc = new XML.DOMDocument;
doc.load("sample.xml");
var map = doc.doctype.notations;
println(map.item(0).publicId);
Output
notationFile
systemId
Contains the system identifier of this notation. If the system identifier was not
specified, this contains an empty string.
Remarks
String. Read-only.
Syntax
strValue = oXMLDOMNotation.systemId
Example
var doc = new XML.DOMDocument;
doc.load("sample.xml");
var map = doc.doctype.notations;
var sysID = map.item(1).systemId;
XMLDOMProcessingInstruction Object
The XMLDOMProcessingInstruction object represents a processing instruction, used in
XML as a way to keep processor-specific information in the text of the document.