Is there any way (even weird one) to serialize a complex object into a JSON string? It's not directly for sending as web request's payload, so I cannot rely on the Communication functionality. I need object to be converted to json string to make some manipulations with it (for some weird hash/authentication purpose). Writing my own serializer is doable, of course, but probably too much.
Also, is there a way to desirialize a JSON string?