There are three practical ways to get data from a browser client to a web service:
Query string parameters in a GET or a POST request.
POST parameters.
Raw POST data.
The first two are fairly straightforward: A query string is the part of the URL that comes after the question mark. Post parameters (as name/value pairs) can be [...]