Escape double quote in WCF rest -
we host wcf restful service. there 1 service of verb post, , possible pass in double quotes part of message. causing issues. tried standard slash escape it, didn't work. suggestions? here request body:
{"gardenwidth":"16' 7"","gardenlength":"62", "gardenstyle":"general","postalcode":"12345",}
try removing comma after "12345":
{ "gardenwidth": "16' 7\"", "gardenlength": "62", "gardenstyle": "general", "postalcode": "12345" }
Comments
Post a Comment