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&arg2=value2</operand>
<target>this:response</target>
</instr>
Which produces...
<nvp>
<arg1>value1</arg1>
<arg2>value2</arg2>
</nvp>