DefaultURI (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 11: Line 11:
<td>An <var>XmlDoc</var> or <var>XmlNode</var>, used as the context node for the <var class="term">xpath</var> expression. If an <var>XmlDoc</var>, the <var>Root</var> node is the context node.</td></tr>
<td>An <var>XmlDoc</var> or <var>XmlNode</var>, used as the context node for the <var class="term">xpath</var> expression. If an <var>XmlDoc</var>, the <var>Root</var> node is the context node.</td></tr>
<tr><th>xpath</th>
<tr><th>xpath</th>
<td>A <var>Unicode</var> string that is an [[XPath#XPath_syntax|XPath expression]] that results in a <var>nodelist</var>. The head of the <var>nodelist</var> is the node to process. An optional argument, its default is a period (<code>.</code>), that is, the node referenced by the method object (<var class="term">nr</var>).
<td>A <var>Unicode</var> string that is an [[XPath#XPath_syntax|XPath expression]] that results in a nodelist. The head of the nodelist is the node to process. An optional argument, its default is a period (<tt>.</tt>), that is, the node referenced by the method object (<var class="term">nr</var>).
<p>Prior to <var class="product">[[Sirius Mods]]</var> Version 7.6, this is an EBCDIC string.</p></td></tr>
<p>Prior to <var class="product">[[Sirius Mods]]</var> Version 7.6, this is an EBCDIC string.</p></td></tr>
</table>
</table>


==Usage Notes==
==Usage notes==
<ul>
<ul>
<li><var>DefaultURI</var> is new as of <var class="product">[[Sirius Mods]]</var> Version 6.9.
<li><var>DefaultURI</var> is new as of <var class="product">Sirius Mods</var> Version 6.9.
</ul>
</ul>


==Examples==
==Examples==
<ol><li>In the following example, two elements are added along with their namespace <var>URI</var>s, but only the second added element, which has no prefix, has a default namespace <var>URI</var>:
In the following example, two elements are added along with their namespace <var>URI</var>s, but only the second added element, which has no prefix, has a default namespace <var>URI</var>:
<p class="code">begin
<p class="code">begin
   %d object xmlDoc auto new
   %d object xmlDoc auto new
Line 39: Line 39:
URI of p:top default namespace =  
URI of p:top default namespace =  
URI of inner default namespace = urn:default
URI of inner default namespace = urn:default
</nowiki></p></ol>
</nowiki></p>


==Request-Cancellation Errors==
==Request-Cancellation Errors==
<ul>
<ul>
<li><var>XmlDoc</var> <var>[[Namespace_(XmlDoc_property)|Namespace]]</var> property not <code>On</code>.
<li><var>XmlDoc</var> <var>[[Namespace_(XmlDoc_property)|Namespace]]</var> property value not <var>On</var>.
<li><var class="term">XPath</var> is invalid.
<li><var class="term">xpath</var> is invalid.
<li>Result of (<var class="term">XPath</var>) is empty.
<li>Result of (<var class="term">xpath</var>) is empty.
<li>Insufficient free space exists in CCATEMP.
<li>Insufficient free space exists in CCATEMP.
</ul>
</ul>
Line 51: Line 51:
==See also==
==See also==
<ul>
<ul>
<li>For more information about using XPath expressions, see [[XPath]].
<li>For more information about using XPath expressions, see [[XPath|"XPath"]].
<li>For more information about namespace declarations, see [[XML processing in Janus SOAP#Names and namespaces|"Names and namespaces"]].
<li>For more information about namespace declarations, see [[XML processing in Janus SOAP#Names and namespaces|"Names and namespaces"]].
<li>For more information about URIs, see [[XML_processing_in_Janus_SOAP#Uniform_Resource_Identifier_syntax|"Uniform Resource Identifier syntax"]].
<li>For more information about URIs, see [[XML_processing_in_Janus_SOAP#Uniform_Resource_Identifier_syntax|"Uniform Resource Identifier syntax"]].

Revision as of 00:56, 25 May 2011

Default URI in scope at selected node (XmlDoc and XmlNode classes)

The DefaultURI function returns the Uniform Resource Identifier (URI) associated with the default namespace declaration that is in scope at a node that is the head of an XPath result.

Syntax

%unicode = nr:DefaultURI[( [xpath])] Throws XPathError

Syntax terms

%unicode A string variable for the returned URI.
nr An XmlDoc or XmlNode, used as the context node for the xpath expression. If an XmlDoc, the Root node is the context node.
xpath A Unicode string that is an XPath expression that results in a nodelist. The head of the nodelist is the node to process. An optional argument, its default is a period (.), that is, the node referenced by the method object (nr).

Prior to Sirius Mods Version 7.6, this is an EBCDIC string.

Usage notes

  • DefaultURI is new as of Sirius Mods Version 6.9.

Examples

In the following example, two elements are added along with their namespace URIs, but only the second added element, which has no prefix, has a default namespace URI:

begin %d object xmlDoc auto new %n object xmlNode %n2 object xmlNode %n = %d:addElement('p:top', , 'urn:top') %n2 = %n:addElement('inner', , 'urn:default') %n:print print 'URI of p:top default namespace =' and %n:defaultURI print 'URI of inner default namespace =' and %n2:defaultURI end

The following lines are printed:

<p:top xmlns:p="urn:top"> <inner xmlns="urn:default"/> </p:top> URI of p:top default namespace = URI of inner default namespace = urn:default

Request-Cancellation Errors

  • XmlDoc Namespace property value not On.
  • xpath is invalid.
  • Result of (xpath) is empty.
  • Insufficient free space exists in CCATEMP.

See also