getURIQuerygetURIQuery
Parses the query on a URI into a name-value pair list
Home > Books > NetKernel API and Services Reference > Accessor Listing > Utility and System Accessors > getURIQuery

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:ext:sys

The getURIQuery accessor is exported by the urn:org:ten60:netkernel:ext:sys module. Import this module to gain access to the accessor.

Syntax

URI
active:getURIQuery

ArgumentRulesDescription
operandMandatory a URI

Example Usage

DPML

<instr>
  <type>getURIQuery</type>
  <operand>curi:var:uri</operand>
  <target>var:nvp</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:getURIQuery");
req.addArgument("operand", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

If a service has been invoked with a standard (application/x-www-form-urlencoded) query component on its URI then this can be extracted into a name value pair (which in turn can be transrepted into XML) for easy manipulation.

Example

The query arguments of a URI can be extracted as follows...

<instr>
  <type>getURIQuery</type>
  <operand>ffcpl:/my/uri?arg1=value1&amp;arg2=value2</operand>
  <target>this:response</target>
</instr>

Which produces...

<nvp>
  <arg1>value1</arg1>
  <arg2>value2</arg2>
</nvp>
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.