I have a requirement where I need to send a JSON data to HTTPDelete. There is no setEntity() for Delete.
HttpClient httpClient = new DefaultHttpClient();
HttpDelete httpDel = new HttpDelete(DEL_URL);
StringEntity se = new StringEntity(jsonobj.toString());
//Couldnt set entity.
httpDelReq.setEntity(se);
Is there any possible way to send the JSON data to server