PrefixURI (XmlDoc/XmlNode function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (move footer template to actual end; edits, tags and links)
Line 1: Line 1:
{{Template:XmlDoc/XmlNode:PrefixURI subtitle}}
{{Template:XmlDoc/XmlNode:PrefixURI subtitle}}
<var>PrefixURI</var> can get the Uniform Resource Identifier (URI) associated with a prefix, or it can get the default URI (if a node has a default namespace declaration), in the context of a node that is the head of an XPath result.


This function can get the Uniform Resource Identifier (URI)
associated with a prefix, or it can get the default URI
(if a node has a default namespace declaration),
in the context of a node that is the head of an XPath result.
The <var>PrefixURI</var> function is new as of version 6.9 of the <var class="product">Sirius Mods</var>.
==Syntax==
==Syntax==
{{Template:XmlDoc/XmlNode:PrefixURI syntax}}
{{Template:XmlDoc/XmlNode:PrefixURI syntax}}
Line 18: Line 13:
<td>A <var>Unicode</var> string that is the prefix to "lookup" in the <var>XmlDoc</var>. If this is the null string, the <var class="term">%unicode</var> result is the default namespace at the node to process. Otherwise, the <var class="term">%unicode</var> result is the URI bound to <var class="term">prefix</var> by a namespace declaration in scope at the node to process. In either case, the <var class="term">%unicode</var> result is null if there is no namespace associated with <var class="term">prefix</var>. The prefix length must be at most 255 characters. </td></tr>
<td>A <var>Unicode</var> string that is the prefix to "lookup" in the <var>XmlDoc</var>. If this is the null string, the <var class="term">%unicode</var> result is the default namespace at the node to process. Otherwise, the <var class="term">%unicode</var> result is the URI bound to <var class="term">prefix</var> by a namespace declaration in scope at the node to process. In either case, the <var class="term">%unicode</var> result is null if there is no namespace associated with <var class="term">prefix</var>. The prefix length must be at most 255 characters. </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 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 (<i>nr</i>).</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. An optional argument, its default is a period (.), that is, the node referenced by the method object (<var class="term">nr</var>).</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul>
<ul>
<li>As of <var class="product">Sirius Mods</var> version 7.3, the method's arguments and result may include
<li>As of <var class="product">[[Sirius Mods]]</var> Version 7.3, the method's arguments and result may include only non-null EBCDIC characters that translate to Unicode. As of <var class="product">Sirius Mods</var> Version 7.6, these strings are Unicode or are converted to Unicode.
only non-null EBCDIC characters that translate to Unicode.
<p>For more information about the effects of this Version 7.6 change, see [[XmlDoc API#Strings and Unicode with the XmlDoc API|"Strings and Unicode with the XmlDoc API"]]. For an example of a specific effect that involves the <var>Value</var> method, see [[Value (XmlDoc/XmlNode property)#ampexmp|this example]].</p>
As of <var class="product">Sirius Mods</var> version 7.6, these strings are Unicode or are converted to Unicode.
<li><var>PrefixURI</var> is new as of <var class="product">Sirius Mods</var> Version 6.9.
 
For more information about the effects of this version 7.6
change, see [[XmlDoc API#Strings and Unicode with the XmlDoc API|"Strings and Unicode with the XmlDoc API"]].
For an example of a specific effect that involves the <var>Value</var> method, see
[[Value (XmlDoc/XmlNode property)#ampexmp|this example]].
</ul>
</ul>
==Example==


In the following example, a node has a default URI defined as well as URIs
==Examples==
for two prefixes.
<ol><li>In the following example, a node has a default URI defined as well as URIs for two prefixes. <var>PrefixURI</var> calls return the three URIs:
<var>PrefixURI</var> calls return the three URIs:
<p class="code">begin
<p class="code">Begin
  %d object xmlDoc auto new
%d <var>Object</var> <var>XmlDoc</var> Auto New
  %n object xmlNode
%n <var>Object</var> <var>XmlNode</var>
  %n = %d:[[AddElement_(XmlDoc/XmlNode_function)|addElement]]('x', , 'urn:default')
%n = %d:AddElement('x', , 'urn:default')
  %n:[[AddNamespace_(XmlNode_subroutine)|addNamespace]]('foo', 'urn:foo')
%n:AddNamespace('foo', 'urn:foo')
  %n:addNamespace('bar', 'urn:bar')
%n:AddNamespace('bar', 'urn:bar')
  %n:[[Print_(XmlDoc/XmlNode_subroutine)|print]]
%n:Print
  print 'Default namespace URI =' and %n:prefixURI('')
Print 'Default namespace URI =' And %n:<var>PrefixURI</var>('')
  print 'URI bound to prefix "foo" =' and %n:prefixURI('foo')
Print 'URI bound to prefix "foo" =' And %n:<var>PrefixURI</var>('foo')
  print 'URI bound to prefix "bar" =' and %n:prefixURI('bar')
Print 'URI bound to prefix "bar" =' And %n:<var>PrefixURI</var>('bar')
end
End
</p>
</p>
The following lines are printed:
The following lines are printed:
<p class="code"><x xmlns="urn:default" xmlns:foo="urn:foo" xmlns:bar="urn:bar"/>
<p class="output"><x xmlns="urn:default" xmlns:foo="urn:foo" xmlns:bar="urn:bar"/>
Default namespace URI = urn:default
Default namespace URI = urn:default
URI bound to prefix "foo" = urn:foo
URI bound to prefix "foo" = urn:foo
URI bound to prefix "bar" = urn:bar
URI bound to prefix "bar" = urn:bar
</p>
</p></ol>
 
==Request-Cancellation Errors==
==Request-Cancellation Errors==
<ul>
<ul>
<li><var>XmlDoc</var> <var>[[Namespace (XmlDoc property)|Namespace]]</var> property value not <var>On</var>.
<li><var>XmlDoc</var> <var>[[Namespace (XmlDoc property)|Namespace]]</var> property value not <code>On</code>.
<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>


==See also==
==See also==
{{Template:XmlDoc/XmlNode:PrefixURI footer}}
<ul>
<ul>
<li>For more information about using XPath expressions, see [[XPath|"XPath"]].
<li>For more information about using XPath expressions, see [[XPath|"XPath"]].
<li>For more information about
<li>For more information about namespace declarations, see [[XML processing in Janus SOAP#Names and namespaces|"Names and namespaces"]].
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"]].
<li>The [[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]] method returns
<li>The <var>[[DefaultURI (XmlDoc/XmlNode function)|DefaultURI]]</var> method returns the default URI, if a node has a default namespace declaration; otherwise it returns a null string. The <var>[[URI (XmlDoc/XmlNode function)|URI]]</var> method returns the URI bound to a node's name, if any.
the default URI, if a node has a default namespace declaration;
otherwise it returns a null string.
The <var>[[URI (XmlDoc/XmlNode function)|URI]]</var> method returns the URI bound to a node's name,
if any.
<li>These methods add namespace URIs to <var>XmlDoc</var> nodes:
<li>These methods add namespace URIs to <var>XmlDoc</var> nodes:
<ul>
<ul>
Line 84: Line 65:
</ul>
</ul>
</ul>
</ul>
{{Template:XmlDoc/XmlNode:PrefixURI footer}}

Revision as of 03:10, 29 May 2011

URI of specified prefix in context of selected node (XmlDoc and XmlNode classes)

PrefixURI can get the Uniform Resource Identifier (URI) associated with a prefix, or it can get the default URI (if a node has a default namespace declaration), in the context of a node that is the head of an XPath result.

Syntax

%unicode = nr:PrefixURI( prefix, [xpath]) Throws XPathError

Syntax terms

%unicode A Unicode 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.
prefix A Unicode string that is the prefix to "lookup" in the XmlDoc. If this is the null string, the %unicode result is the default namespace at the node to process. Otherwise, the %unicode result is the URI bound to prefix by a namespace declaration in scope at the node to process. In either case, the %unicode result is null if there is no namespace associated with prefix. The prefix length must be at most 255 characters.
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).

Usage notes

  • As of Sirius Mods Version 7.3, the method's arguments and result may include only non-null EBCDIC characters that translate to Unicode. As of Sirius Mods Version 7.6, these strings are Unicode or are converted to Unicode.

    For more information about the effects of this Version 7.6 change, see "Strings and Unicode with the XmlDoc API". For an example of a specific effect that involves the Value method, see this example.

  • PrefixURI is new as of Sirius Mods Version 6.9.

Examples

  1. In the following example, a node has a default URI defined as well as URIs for two prefixes. PrefixURI calls return the three URIs:

    begin %d object xmlDoc auto new %n object xmlNode %n = %d:addElement('x', , 'urn:default') %n:addNamespace('foo', 'urn:foo') %n:addNamespace('bar', 'urn:bar') %n:print print 'Default namespace URI =' and %n:prefixURI() print 'URI bound to prefix "foo" =' and %n:prefixURI('foo') print 'URI bound to prefix "bar" =' and %n:prefixURI('bar') end

    The following lines are printed:

    <x xmlns="urn:default" xmlns:foo="urn:foo" xmlns:bar="urn:bar"/> Default namespace URI = urn:default URI bound to prefix "foo" = urn:foo URI bound to prefix "bar" = urn:bar

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