Home | History | Annotate | Download | only in client

Lines Matching defs:BODY

48  * can get a body or parameters but not both. Calling a getParameter method will
49 * read and close the body (like readBodyAsString), so you can't read it later.
50 * If you read or close the body first, then getParameter can't read it. The
218 ParameterStyle style = (ps == null) ? ParameterStyle.BODY : Enum
267 InputStream body = request.getBodyAsStream();
268 if (style == ParameterStyle.BODY && !(isPost && body == null)) {
278 case BODY: {
284 body = new ByteArrayInputStream(form);
300 if (isPost && body == null) {
307 body = new ByteArrayInputStream(form);
314 final HttpMessage httpRequest = new HttpMessage(request.method, new URL(url), body);
322 response.getParameters(); // decode the response body
340 AUTHORIZATION_HEADER, BODY, QUERY_STRING;