We\'re considering replacing (some or many) \'classic\' SOAP XML WCF calls by JSON (WCF or other) calls, because of the lower overhead and ease of use directly in Javascript
var receivedObject = JsonConvert.DeserializeObject(content);
works much faster for me then:
and this is even faster:
dynamic receivedObject = JObject.Parse(content); // The same goes for JArray.Parse()