This code should work:
DO wwJsonSerializer && Load libs *** Create a complex object loCust = CREATEOBJECT("Empty")ADDPROPERTY(loCust,"Name","Rick")ADDPROPERTY(loCust,"Entered",DATETIME())*** Create a nested objectADDPROPERTY(loCust,"Address", CREATEOBJECT("Empty"))ADDPROPERTY(loCust.Address,"Street","32 Kaiea Place")ADDPROPERTY(loCust,"Number",32) loSer = CREATEOBJECT("wwJsonSerializer")*** Serialize into JSON lcJson = loSer.Serialize(loCust) ? lcJson
JsonEncodeString() is an API function in wwipstuff.dll. Either the DLL is not there, or you have an old version that is firing. You might also check for errand versions of wwipstuff in your windows folder that might be gunking stuff up.
If you try this code in the (new) wwClient install folder it should just work.
+++ Rick ---