Sets the query component on an existing URI from the values
in a name value pair representation. This is useful for
calling services which expose a URI which expects arguments
on the query.
See also getURIQuery
Example
Here is an example setting queries on a simple URI...
<instr>
<type>setURIQuery</type>
<operand>
ffcpl:/my/uri
</operand>
<param>
<nvp>
<arg1>value1</arg1>
<arg2>value2</arg2>
</nvp>
</param>
<target>this:response</target>
</instr>
Which produces...
<uri>ffcpl:/my/uri?arg1=value1&arg2=value2</uri>