I try to send to WCF server a property of type 'string' the string will contain a json, but i always get this error:
The server encountered an error processing the request. The exception message is 'There was an error deserializing the object of type XX.XX Encountered unexpected character '''.'. See server logs for more details.
I run a JSON.Stringfy(json) method before is send it to the server, the json looks like this for example:
{
"JsonString": "{"Wontext":{"StorageUniqueId":"0","FormName":"Form_1","FormVersion":"1.0"}}"
}
What am I doing wrong?