Lines Matching refs:POST
3 the server operates. To induce changes on the server, the @emph{POST} method is preferred over
7 composes an individual response text. Even though it was not mandatory to use the @emph{POST} metho…
8 as there is no permanent change caused by the POST, it is an illustrative example on how to share d…
30 as the response for anything but proper @emph{GET} and @emph{POST} requests:
45 @heading POST request
50 not only if there are different POSTs but also if one POST has only been received partly yet and
110 requests other than @emph{POST} requests.
120 if (con_info->connectiontype == POST)
170 If the new request is a @emph{POST}, the postprocessor must be created now. In addition, the type
173 if (0 == strcmp (method, "POST"))
184 con_info->connectiontype = POST;
209 In case of @emph{POST}, we invoke the post processor for as long as data keeps incoming, setting
213 if (0 == strcmp (method, "POST"))
231 Finally, if they are neither @emph{GET} nor @emph{POST} requests, the error page is returned.