Is it possible to change the name that a "query" type parameter is passed through with? It would be great to have an "alias" attribute or similar on the <key> element.
-md
This is very valid request and we already have this on our list of todo tasks :-)
Until we get to it, you can use the URI Template workaround to customize the name
Let's assume you would like to alias query parameter called 'c' with 'color'. The template would prepend/prefix the value of color w/ 'c='
CODE
<url>http://example.com?{-prefix|c=|color}</url>
..
<key id="color" .... paramType='query'/>
-- Nagesh