I have deployed a simple REST based application in RAD.
A simple URL is accessed using http://localhost/<contextroot>/users/<username>
where <username>
is accessed using reqeust.getAttributes()
. Now, how do i pass more than one attribute to the REST service?
You could also use URLs of the style
http://localhost/<contextroot>/comments/<username>/after/<date>
, but that tends to get messy if you wish to include a large number of options.Usually you'll use query parameters:
You haven't indicated which language or framework you are using so I can't tell you how to do this in code.