David Cash Posted September 3, 2019 Posted September 3, 2019 Hi, I'm trying to build a JSON string with an embedded JSON string as an element. The double quotes in the embedded JSON are being escaped and crashing the receiving application. How can the JSON string be added as an element to the outbound JSON string as a plain string without the escape characters. Current output: { "PublishId":"554b1e7f-a86a-4915-98ab-bc7dfdc95ec2", "ProcessType":"Message_Conversion", "ProcessStatus":"INIT", "AccumSyncMessage":"{"TransKey":"44","UpdateTime":"2019-08-22T10:09:16"........continues Desired output: { "PublishId":"554b1e7f-a86a-4915-98ab-bc7dfdc95ec2", "ProcessType":"Message_Conversion", "ProcessStatus":"INIT", "AccumSyncMessage": {"TransKey":"44","UpdateTime":"2019-08-22T10:09:16"......... continues
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now