I need to call a web service to delete data, and I need to do it using HttpDelete. The service takes a JSON object as parameter.
I have done HttpPost before, using SetEntity, but this is not available with HttpDelete.
It's a call like http://url/DELETE/service and something like { id: "xxxxxxx", id2: 11 }
as parameter.
I can't find any good info on this. Any ideas?