use of com.predic8.membrane.core.http.EmptyBody in project service-proxy by membrane.
the class MethodOverrideInterceptor method handleGet.
private void handleGet(Exchange exc) throws IOException {
Request req = exc.getRequest();
req.readBody();
req.setBody(new EmptyBody());
req.getHeader().removeFields(Header.CONTENT_LENGTH);
req.getHeader().removeFields(Header.CONTENT_TYPE);
req.setMethod("GET");
}