ToXPathString (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(3 intermediate revisions by 2 users not shown)
Line 2: Line 2:
<var>ToXPathString </var> returns, in a string, an absolute XPath expression that identifies the node that a given XPath expression actually selects.  <var>ToXPathString</var> is designed to provide additional information when sending an error message to an XML client application, helping the application to identify an invalid node selection in its request XML document.  A complex XPath expression might not be finding the node intended, for example.
<var>ToXPathString </var> returns, in a string, an absolute XPath expression that identifies the node that a given XPath expression actually selects.  <var>ToXPathString</var> is designed to provide additional information when sending an error message to an XML client application, helping the application to identify an invalid node selection in its request XML document.  A complex XPath expression might not be finding the node intended, for example.


<var>ToXPathString</var> is the same as <var>[[XPathNodeID (XmlDoc/XmlNode function)|XPathNodeID]]</var> except its output is a string instead of a <var>Stringlist</var> (<var>ToXPathStringlist</var> is a synonym for <var>XPathNodeID</var>).  <var>ToXPathString</var> lets <var class="product">[http://www.sirius-software.com/maint/factr.pdf SirFact]</var>, <var class="product">[[Debugger|Janus Debugger]]</var>, and <var class="product">[[Debugger|Sirius Debugger]]</var>  users extract XPath information when needed.  The <var>XPathNodeID</var> method does not work in those environments because of its object (<var>Stringlist</var>) output.
<var>ToXPathString</var> is the same as <var>[[XPathNodeID (XmlDoc/XmlNode function)|XPathNodeID]]</var> except its output is a string instead of a <var>Stringlist</var> (<var>ToXPathStringlist</var> is a synonym for <var>XPathNodeID</var>).  <var>ToXPathString</var> lets <var class="product">[http://m204wiki.rocketsoftware.com/images/f/fb/FactrNew.pdf SirFact]</var>, <var class="product">[[Debugger|Janus Debugger]]</var>, and <var class="product">[[Debugger|Sirius Debugger]]</var>  users extract XPath information when needed.  The <var>XPathNodeID</var> method does not work in those environments because of its object (<var>Stringlist</var>) output.


==Syntax==
==Syntax==
{{Template:XmlDoc/XmlNode:ToXPathString syntax}}
{{Template:XmlDoc/XmlNode:ToXPathString syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th>
<tr><th>%string</th>
<td>A string or <var>longstring</var> that identifies the node identified by <var class="term">selectionXpath</var>.</td></tr>
<td>A string or <var>Longstring</var> that identifies the node identified by <var class="term">selectionXpath</var>.</td></tr>
<tr><th>nr</th>
<tr><th>nr</th>
<td>An <var>XmlDoc</var> or <var>XmlNode</var>, used as the context node for the <var class="term">selectionXpath</var> expression. If an <var>XmlDoc</var>, the Root 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">selectionXpath</var> expression. If an <var>XmlDoc</var>, the <var>Root</var> node is the context node. </td></tr>
<tr><th>selectionXpath</th>
<tr><th>selectionXpath</th>
<td>A <var>Unicode</var> string that is an [[XPath#XPath_syntax|Xpath expression]] that selects a node from the method object. Prior to <var class="product">[[Sirius Mods]]</var> Version 7.6, this is an EBCDIC string.</td></tr>
<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. Any other nodes in the nodelist are ignored.
<p>
This is an optional argument, and 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.</td></tr>
</table>
</table>


Line 58: Line 61:


==Request-cancellation errors==
==Request-cancellation errors==
This list is not exhaustive: it does <i>not</i> include all the errors that are request  cancelling.
<ul>
<ul>
<li><var class="term">selectionXpath</var> is invalid.
<li><var class="term">selectionXpath</var> expression is invalid.
<li>Insufficient free space exists in CCATEMP.
<li>Insufficient free space exists in CCATEMP.
</ul>
</ul>

Latest revision as of 20:59, 19 February 2015

XPath expression for selected node (XmlDoc and XmlNode classes)

ToXPathString returns, in a string, an absolute XPath expression that identifies the node that a given XPath expression actually selects. ToXPathString is designed to provide additional information when sending an error message to an XML client application, helping the application to identify an invalid node selection in its request XML document. A complex XPath expression might not be finding the node intended, for example.

ToXPathString is the same as XPathNodeID except its output is a string instead of a Stringlist (ToXPathStringlist is a synonym for XPathNodeID). ToXPathString lets SirFact, Janus Debugger, and Sirius Debugger users extract XPath information when needed. The XPathNodeID method does not work in those environments because of its object (Stringlist) output.

Syntax

%string = nr:ToXPathString[( [selectionXpath])] Throws XPathError

Syntax terms

%string A string or Longstring that identifies the node identified by selectionXpath.
nr An XmlDoc or XmlNode, used as the context node for the selectionXpath expression. If an XmlDoc, the Root node is the context node.
selectionXpath A Unicode string that is an XPath expression that results in a nodelist. The head of the nodelist is the node to process. Any other nodes in the nodelist are ignored.

This is an optional argument, and 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

  • If the absolute XPath expression returned by ToXPathString contains no prefixes, the string %string contains only one item: the expression. However, if the expression uses an element or attribute that has one or more non-null namespace URIs, the expression contains an additional pair of blank-delimited substrings for each such URI (a substring for the associated prefix, then a substring for the URI).

    Note: If the expression uses a URI that is without a prefix in the document or if a single prefix in the document is used for two different URIs, ToXPathString generates an "invented" prefix. Such a prefix is generated because an XPath expression requires a prefix if it names an element or attribute that has a URI (for more about this requirement, see SelectionNamespace). A generated prefix is shown in the example, below.

  • ToXPathString is available in Sirius Mods Version 7.3 and later.

Examples

The following document contained in an XmlDoc is used as the method object for ToXPathString:

<a> <?p1?> <b> <c n="1"/> <c n="2"/> </b> <?p2?> <x:a xmlns:x="u:a"> <x:b/> <y xmlns="u:c"/> </x:a> </a>

When applied to the above document, the following table shows the strings returned for each of various ToXPathString arguments. Notice that the last two arguments produce strings that include prefix/URI substrings.

Argument: Returned string: ----------------------------- --------------------------- */* /a/b */*/* /a/b/c[1] */*/*[2] /a/b/c[2] */processing-instruction() /a/processing-instruction()[1] */processing-instruction()[2] /a/processing-instruction()[2] */*/*/@* /a/b/c[1]/@n / / */*[2] /a/x:a x u:a */*[2]/*[2] /a/x:a/_xpID.00:y x u:a _xpID.00 u:c

Request-cancellation errors

This list is not exhaustive: it does not include all the errors that are request cancelling.

  • selectionXpath expression is invalid.
  • Insufficient free space exists in CCATEMP.

See also