Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JsonConvert.DeserializeObject and "d" wrapper in WCF

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(response) where response is

"{\"d\":\"{\"a0b70d2f-7fe4-4aa2-b600-066201eab82d\":\"Thelma\",\"d56d4d4f-6029-40df-a23b-de27617a1e43\":\"Louise\"}\"}"

I gor an Error:

After parsing a value an unexpected character was encoutered: a. Line 1, position 9.

If I change response into

"{\"a0b70d2f-7fe4-4aa2-b600-066201eab82d\":\"Thelma\",\"d56d4d4f-6029-40df-a23b-de27617a1e43\":\"Louise\"}"

I got it working.

So how to parse this "d" wrapped JSON responses from WCF services? Is there any better way to parse JSON?

like image 323
AnzeR Avatar asked May 12 '26 14:05

AnzeR


1 Answers

I'm assuming you are using <enableWebScript/> in your behavior config, replace that with <webHttp defaultOutgoingResponseFormat="Json"/> and you will get nice and clean json, no "d" and no "__type"

like image 55
JeremyWeir Avatar answered May 14 '26 04:05

JeremyWeir



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!