AddSubtree (XmlDoc/XmlNode function)
Copy subtree to XmlDoc Root or to Element XmlNode (XmlDoc and XmlNode classes)
[Requires Janus SOAP]
The AddSubtree callable function copies a subtree of an XmlDoc to the method parent node, where it becomes the last child of that node. A subtree is a node, all of its attributes and namespace declarations, and all descendants of the node and their attributes and namespace declarations.
Syntax
[%nod =] nr:AddSubtree( sourceSubtreeNode, [DefaultURI= unicode])
Syntax terms
%nod | If specified, an XmlNode that is set to point to the top of the subtree that is added. |
---|---|
nr | An XmlDoc or XmlNode that refers to the Root or Element node parent of the added subtree. |
sourceSubtreeNode | XmlNode that points to the non-Root node that is the top of the subtree to be copied. |
DefaultURI | This optional, name required parameter is a Unicode string that controls the URI of the default namespace of some of the Element nodes of the added subtree.
If a DefaultURI argument is specified, its value becomes the URI that is used for all unprefixed elements in the added subtree that are not already in the scope of a default namespace declaration within the added subtree. For more details, see the Usage notes and Examples sections, below. |
Usage notes
- Since the return value of AddSubtree is frequently not needed, you may want to Call it instead of saving its return value.
- The target parent and subtree nodes can either be in the same or in different XmlDocs.
- When copying between different XmlDocs under Sirius Mods Version 6.8 or earlier, the XmlDocs' Namespace property values must be the same, that is, both On or both Off. As of Sirius Mods Version 6.9, these conditions also permit such copying:
- The source XmlDoc has
Namespace=None
and the target XmlDoc hasNamespace=Ignore
. - The source XmlDoc has
Namespace=None
and the target XmlDoc hasNamespace=On
, if the DefaultURI argument is specified.
- The source XmlDoc has
- Processing of an XmlDoc is likely to be more efficient if you add nodes in document order (that is, top-to-bottom, left-to-right).
- A subtree that is a Text node may not be added adjacent to (that is, as a sibling of) another Text node, unless the AdjacentText property value is Combine.
- A node that is added to an XmlDoc whose AllowNull property setting is
True
, may not later be the source node of a subtree to be copied to a target XmlDoc in whichAllowNull=False
. - If the DefaultURI argument is specified, the value of the Namespace property of the method object of AddSubtree must be On.
- If the DefaultURI argument is not specified, each node added by AddSubtree retains the URI value it had in the source XmlDoc. See example 2 below.
If a DefaultURI argument is present, its value is used as the URI of any unprefixed node whose namespace declaration is located at a source XmlDoc element that is not part of the added subtree. See example 3 below.
The namespace URI of an unprefixed node is preserved if the namespace declaration is within the copied subtree, whether the DefaultURI argument is specified or not. See example 4 below.
- You can apply the DefaultURI function to the AddSubtree method object to cause an added subtree to "inherit" the default namespace of that node. See example 5 below.
Examples
- In the following example, the top-level Element (and its descendants) from XmlDoc
%doc2
are copied as the "body" of a SOAP request document in%doc1
:begin %doc1 is object xmlDoc %doc1 = new %n1 is object xmlNode %n2 is object xmlNode %n1 = %doc1:addElement('SOAP-ENV:Envelope', , - 'http://schemas.xmlsoap.org/soap/envelope/') %n1 = %n1:addElement('SOAP-ENV:Body') %doc2 is object xmlDoc %doc2 = new %doc2:loadXml('<top><a><b>05</b></a></top>') %n2 = %doc2:selectSingleNode('top') %n1:addSubtree(%n2) %doc1:print end
Here is "doc1" before the subtree is added:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Body/> </SOAP-ENV:Envelope>
Here is "doc1" after the subtree is added:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Body> <top> <a> <b>05</b> </a> </top> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
- In the following request, a source node is added to a target node, and the source node retains the URI value it had in the source XmlDoc:
begin %outDoc is object xmlDoc auto new %inDoc is object xmlDoc auto new %tar is object xmlNode %src is object xmlNode %tar = %outDoc:addElement('target', , 'urn:target') %src = %inDoc:addElement('sourceWrap', , 'urn:source') %src = %src:addElement('source') %tar:addSubtree(%src) print 'Source document:' %inDoc:print print ' ' print 'Target document including copied subtree:' %outDoc:Print end
These lines result:
Source document: <sourceWrap xmlns="urn:source"> <source/> </sourceWrap> Target document including copied subtree: <target xmlns="urn:target"> <source xmlns="urn:source"/> </target>
The default namespace URI in scope at the
source
element (child ofsourceWrap
) isurn:source
, and that is retained when the node is copied to its target. The result is different if a DefaultURI argument is specified for AddSubtree as in the next example. - In the following request fragment, a source node is added to a target node using a DefaultURI specification, and the source node retains the URI value it had in the source XmlDoc:
%tar = %outDoc:AddElement('target', , 'urn:target') %src = %inDoc:AddElement('sourceWrap', , 'urn:source') %src = %src:AddElement('source') %tar:AddSubtree(%src, DefaultURI='urn:target') %tar:Print
The URI of the
source
element after the subtree is added is the URI value specified in the DefaultURI argument:<target xmlns="urn:target"> <source/> </target>
This
source
element URI would not be used if the declaration of the default namespace in scope at the source element were inside the source subtree, as in the next example. - In the following User Language fragment, the namespace URI of an unprefixed node is preserved (despite the DefaultURI argument), since the namespace declaration is within the added subtree:
%tar = %outDoc:AddElement('target', , 'urn:target') %src = %inDoc:addElement('source', , 'urn:source') %tar:addSubtree(%src, DefaultURI='urn:target') %tar:print
The result is:
<target xmlns="urn:target"> <source xmlns="urn:source"/> </target>
- In the following fragment, the DefaultURI function is used to provide a value for the DefaultURI argument so that the added subtree "inherits" the default namespace of the target node:
%tar = %outdoc:AddElement('target', , 'urn:target') %src = %inDoc:AddElement('sourceWrap', , 'urn:source') %src = %src:AddElement('source') %tar:AddSubtree(%src, DefaultURI=%tar:DefaultURI) %tar:Print
The result is:
<target xmlns="urn:target"> <source/> </target>
Request-cancellation errors
This list is not exhaustive: it does not include all the errors that are request cancelling.
- The nr object is neither the Root nor an Element node.
- The sourceSubtreeNode argument is a Root node.
- nr is the same as, or a descendant of, sourceSubtreeNode.
- Source and target XmlDocs have different Namespace settings.
- Any of the errors that would occur based on insertion of the top subtree node at the given target parent, for example, insertion of a duplicate attribute, or insertion of an adjacent Text node when the AdjacentText property value is Disallow. See the "Add" function corresponding to the type of the subtree node (for those examples just cited, AddAttribute and AddText, respectively).
- Insufficient free space exists in CCATEMP.
See also
- InsertSubtreeBefore also copies a subtree. AddSubtree copies a subtree as the last child of the node pointed to by the method object; InsertSubtreeBefore copies a subtree as the immediately preceding sibling of the node pointed to by the method object.