Erik,

We are using your parsing object to parse a single jsonrecord, but the next project must parse an array of json records.

Example of current use...
Handle hParser hDictionary
Get Create U_cJSONParser to hParser
Get Create U_cJSONDictionary to hDictionary
Send Parse of hParser sJson hDictionary
Get Value of hDictionary "first_name" to ResponseData.sFirstName
Get Value of hDictionary "status" to ResponseData.sStatus

how would that be done if sJason contains five records?
Handle hParser hDictionary
Get Create U_cJSONParser to hParser
Get Create U_cJSONDictionary to hDictionary
Send Parse of hParser sJson hDictionary
Get Value of hDictionary "first_name" to ResponseData[iItem#].sFirstName
Get Value of hDictionary "status" to ResponseData[iItem#].sStatus

We know how to load up a struct array, but not how the parser handles sJson consisting of many records. Thanks for any guidance.

Nick