By default WCF service wrap JSON response in \"d\" wrapper and there I found a problem with parsing it.
If I parse with JsonConvert.DeserializeObject(respons
If you are switching to WebHttpBehavior and you still get an error message about the body elements not being wrapped, manually set the body style of the methods you're dealing with to Wrapped. Do it like so:
[OperationContract(BodyStyle = WebMessageBodyStyle.Wrapped, ...)] string DoSomething(...)
Hope this helps!