Home | History | Annotate | Download | only in httpclient4

Lines Matching refs:request

51     public HttpMethodResponse(HttpRequestBase request, HttpResponse response, byte[] requestBody,
54 super(request.getMethod(), new URL(request.getURI().toString()));
55 this.httpRequest = request;
97 StringBuilder request = new StringBuilder(httpRequest.getMethod());
98 request.append(" ").append(httpRequest.getURI().getPath());
101 request.append("?").append(query);
103 request.append(EOL);
105 request.append(header.getName()).append(": ").append(header.getValue()).append(EOL);
111 request.append("Content-Length: ").append(contentLength).append(EOL);
114 request.append(EOL);
116 request.append(new String(requestBody, requestEncoding));
118 into.put(REQUEST, request.toString());