My web service responses has mimetype: "application/json" and my JSON outputs without spacing, like this
1
{"Data":{"Item":"123","Timestamp":"2011-11-24T17:50:43"}}
When the JSON should output like this
2
{
"Data":{
"Item":"123",
"Timestamp":"2011-11-24T17:50:43"
}
}
Is there any way I can fix the JSON format, so it appears like #2?