response = execRequest(httpPut, args, content);
} else if (StringUtil.equalsIgnoreCase(method, METHOD_DELETE)) {
HttpDelete httpDelete = new HttpDelete(url);
response = execRequest(httpDelete, args, content);
} else if (StringUtil.equalsIgnoreCase(method,METHOD_DELETE_BODY)){
HttpDeleteWithBody httpDelete = new HttpDeleteWithBody(url);
response = execRequest(httpDelete, args, content);
} else {
throw new ClientServicesException(null, "Unsupported HTTP method {0}", method);
}