"EnTerr" wrote:
As a general tip on "how to fish" when having issue like that: put a STOP statement right after the problematic parse/ingest of xml/json. That throws you into console - and then via telnet there use ? (print) commands to figure out the exact access path:
BrightScript Debugger> ? json
<Component: roArray> =
[
<Component: roAssociativeArray>
]
BrightScript Debugger> ? json[0]
<Component: roAssociativeArray> =
{
congregation_id: 5
congregation_name: CCM Melbourne
description: Children's ministry is available for infants through 6th grade.
enable_event_streaming: true
event_end_date: 2016-07-02T19:30:00
event_id: 15642
event_start_date: 2016-07-02T18:00:00
event_title: Saturday 6pm Service
ministry_name: Weekend Worship
webhtml: invalid
}
BrightScript Debugger> ? json[0].enable_event_streaming
true
See how i "fished" for the data, w/o process being mentally taxing?
Oh that is very helpful indeed! Many thanks, sir!