xml.DomDocument.insertAfterDocumentNode

Inserts a child DomNode object after another child DomNode in a DomDocument object.

Syntax

insertAfterDocumentNode(
   newNode xml.DomNode,
   ref xml.DomNode )
  1. newNode defines the node to insert.
  2. ref defines the reference node (the node after which the new node must be inserted).

Usage

Inserts a child xml.DomNode object after another child DomNode in this DomDocument object ; newNode is the node to insert; ref is the reference node (the node after which the new node must be inserted).

Important: This method is not part of W3C standard API.

Only Text nodes, Processing Instruction nodes, Document Fragment nodes, one Element node, and one Document Type node allowed.

In case of error, the method throws an exception and sets the STATUS variable. Depending on the error, a human-readable description of the problem is available in the SQLCA.SQLERRM register. See Error handling in GWS calls (STATUS).