AddSubtree (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (more tagging)
Line 31: Line 31:
<li>A node that is added to an <var>XmlDoc</var> whose <var>[[AllowNull (XmlDoc property)|AllowNull]]</var> property setting is <code>True</code>, may not later be the source node of a <var>subtree</var> to be copied to a target <var>XmlDoc</var> in which <code>AllowNull=False</code>.
<li>A node that is added to an <var>XmlDoc</var> whose <var>[[AllowNull (XmlDoc property)|AllowNull]]</var> property setting is <code>True</code>, may not later be the source node of a <var>subtree</var> to be copied to a target <var>XmlDoc</var> in which <code>AllowNull=False</code>.
<li>If the <var class="term">DefaultURI</var> argument is specified, the value of the Namespace property of the method object of <var>AddSubtree</var> must be <code>On</code>.
<li>If the <var class="term">DefaultURI</var> argument is specified, the value of the Namespace property of the method object of <var>AddSubtree</var> must be <code>On</code>.
<li>If the <var class="term">DefaultURI</var> argument is ''not'' specified, each node added by <var>AddSubtree</var> retains the URI value it had in the source <var>XmlDoc</var>.  See the [[#adsub2|example]] below.
<li>If the <var class="term">DefaultURI</var> argument is ''not'' specified, each node added by <var>AddSubtree</var> retains the URI value it had in the source <var>XmlDoc</var>.  See the [[#adsub2|example 2]] below.
 
<p>If a <var class="term">DefaultURI</var> argument is present, its value is used as the URI of any unprefixed node whose namespace declaration is located at a source <var>XmlDoc</var> element that is ''not'' part of the added <var>subtree</var>.  See the [[#adsub3|example 3]] below.</p>
If a <var class="term">DefaultURI</var> argument is present, its value is used as the URI of any unprefixed node whose namespace declaration is located at a source <var>XmlDoc</var> element that is ''not'' part of the added <var>subtree</var>.  See the [[#adsub3|example]] below.
<p>The namespace URI of an unprefixed node is preserved if the namespace declaration is within the copied <var>subtree</var>, whether the <var class="term">DefaultURI</var> argument is specified or not. See the [[#adsub4|example 4]] below.</p>
 
<li>You can apply the <var>[[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]]</var> function to the <var>AddSubtree</var> method object to cause an added <var>subtree</var> to "inherit" the default namespace of that node.  See the [[#adsub5|example 5]] below.
The namespace URI of an unprefixed node is preserved if the namespace declaration is within the copied <var>subtree</var>, whether the <var class="term">DefaultURI</var> argument is specified or not. See the [[#adsub4|example]] below.
<li>You can apply the <var>[[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]]</var> function to the <var>AddSubtree</var> method object to cause an added <var>subtree</var> to "inherit" the default namespace of that node.  See the [[#adsub5|example]] below.
</ul>
</ul>


Line 47: Line 45:
   %n1 is object xmlNode
   %n1 is object xmlNode
   %n2 is object xmlNode
   %n2 is object xmlNode
   %n1 = %doc1:addElement('SOAP-ENV:Envelope', ,  -
   %n1 = %doc1:[[AddElement_(XmlDoc/XmlNode_function)|addElement]]('SOAP-ENV:Envelope', ,  -
       <nowiki>'http://schemas.xmlsoap.org/soap/envelope/'</nowiki>)
       <nowiki>'http://schemas.xmlsoap.org/soap/envelope/'</nowiki>)
   %n1 = %n1:addElement('SOAP-ENV:Body')
   %n1 = %n1:addElement('SOAP-ENV:Body')
   %doc2 is object xmlDoc
   %doc2 is object xmlDoc
   %doc2 = new
   %doc2 = new
   %doc2:loadXml<nowiki>('<top><a><b>05</b></a></top>')</nowiki>
   %doc2:[[LoadXml_(XmlDoc/XmlNode_function)|loadXml]]<nowiki>('<top><a><b>05</b></a></top>')</nowiki>
   %n2 = %doc2:selectSingleNode('top')
   %n2 = %doc2:selectSingleNode('top')
   %n1:addSubtree(%n2)
   %n1:addSubtree(%n2)
Line 58: Line 56:
end
end
</p>
</p>
Here is "doc1" before the subtree is added:
Here is "doc1" before the subtree is added:
<p class="output"><nowiki><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<p class="output"><nowiki><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
Line 75: Line 72:
</SOAP-ENV:Envelope></nowiki>
</SOAP-ENV:Envelope></nowiki>
</p>
</p>
<br>
<li><div id="adsub2"></div>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 <var>XmlDoc</var>:
<div id="adsub2"></div>
<li>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 <var>XmlDoc</var>:
<p class="code">begin
<p class="code">begin
   %outDoc is object xmlDoc auto new
   %outDoc is object xmlDoc auto new
Line 96: Line 90:
end
end
</p>
</p>
These lines result:
These lines result:
<p class="code">Source document:
<p class="code">Source document:
Line 102: Line 95:
   <source/>
   <source/>
</sourceWrap>
</sourceWrap>
Target document including copied subtree:
Target document including copied subtree:
<target xmlns="urn:target">
<target xmlns="urn:target">
Line 108: Line 100:
</target>
</target>
</p>
</p>
 
The default namespace URI in scope at the <var>source</var> element (child of <var>sourceWrap</var>) is <var>urn:source</var>, and that is retained when the node is copied to its target. The result is different if a <var class="term">DefaultURI</var> argument is specified for <var>AddSubtree</var> as in the next example.
The default namespace URI in scope at the <tt>source</tt> element (child
of <tt>sourceWrap</tt>) is <tt>urn:source</tt>, and that is retained when the node is copied to its target.
 
The result is different if a <tt>DefaultURI</tt> argument is specified for
<var>AddSubtree</var> as in the next example.
<div id="adsub3"></div>
<div id="adsub3"></div>
<li>In the following request fragment,
<li>In the following request fragment, a source node is added to a target node using a <var class="term">DefaultURI</var> specification, and the source node retains the URI value it had in the source <var>XmlDoc</var>:
a source node is added to a target node using a <tt>DefaultURI</tt> specification,
and the source node retains the URI value it had in the source <var>XmlDoc</var>:


<p class="code">%tar = %outDoc:AddElement('target', , 'urn:target')
<p class="code">%tar = %outDoc:AddElement('target', , 'urn:target')
Line 126: Line 111:
</p>
</p>


The URI of the <tt>source</tt> element after the subtree is added is the URI
The URI of the <var>source</var> element after the subtree is added is the URI value specified in the <var class="term">DefaultURI</var> argument:
value specified in the <tt>DefaultURI</tt> argument:
<p class="code"><target xmlns="urn:target">
<p class="code"><target xmlns="urn:target">
   <source/>
   <source/>
Line 133: Line 117:
</p>
</p>


This <tt>source</tt> element URI would '''not''' be used if
This <var>source</var> element URI would '''not''' be used if the declaration of the default namespace in scope at the <var>source</var> element were inside the source <var>subtree</var>, as in the next example.
the declaration of the default namespace in scope at the <tt>source</tt>
element were inside the source subtree, as in the next example.
<div id="adsub4"></div>
<div id="adsub4"></div>
<li>In the following User Language fragment, the namespace URI of an unprefixed
<li>In the following User Language fragment, the namespace URI of an unprefixed node is preserved (despite the <var class="term">DefaultURI</var> argument), since the namespace declaration is within the added subtree:
node is preserved
(despite the <tt>DefaultURI</tt> argument),
since the namespace declaration is within the added subtree:
<p class="code">%tar = %outDoc:AddElement('target', , 'urn:target')
<p class="code">%tar = %outDoc:AddElement('target', , 'urn:target')
%src = %inDoc:AddElement('source', , 'urn:source')
%src = %inDoc:addElement('source', , 'urn:source')
%tar:AddSubtree(%src, DefaultURI='urn:target')
%tar:addSubtree(%src, DefaultURI='urn:target')
%tar:Print
%tar:print
</p>
</p>
The result is:
The result is:
Line 152: Line 131:
</p>
</p>
<div id="adsub5"></div>
<div id="adsub5"></div>
<li>In the following fragment,
<li>In the following fragment, the [[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]] function is used to provide a value for the <var class="term">DefaultURI</var> argument so that the added <var>subtree</var> "inherits" the default namespace of the target node:
the [[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]] function
is used to provide a value for the <tt>DefaultURI</tt> argument so that
the added subtree "inherits" the default namespace of the target node:
<p class="code">%tar = %outdoc:AddElement('target', , 'urn:target')
<p class="code">%tar = %outdoc:AddElement('target', , 'urn:target')
%src = %inDoc:AddElement('sourceWrap', , 'urn:source')
%src = %inDoc:AddElement('sourceWrap', , 'urn:source')

Revision as of 08:12, 30 April 2011

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, but Name-Required parameter Unicode is a 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.

This parameter is available as of "Sirius Mods" Version 6.9.

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 properties 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 has Namespace=Ignore.
    • The source XmlDoc has Namespace=None and the target XmlDoc has Namespace=On, if the DefaultURI argument is specified.
  • 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 setting 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 which AllowNull=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 the 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 the 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 the 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 the example 5 below.

Examples

  1. 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>

  2. 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 of sourceWrap) is urn: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.

  3. 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.

  4. 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>

  5. 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

  • Nr is neither the Root nor an Element node.
  • SourceSubtreeNod is a Root node.
  • Nr is the same as, or a descendant of, sourceSubtreeNod.
  • 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 setting 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.