Parsing JSON doesn't seem to work - tracing the same does! (why?)
I have an activity with a Java step to parse JSON:
try {
myStepPage.adoptJSONObject(myStepPage.getString(".property"));
} catch (InvalidStreamError ise) {
oLog.error("Invalid Stream Error parsing JSON: ", ise);
}
And it seems to work... somewhat, but doesn't always set the actual resulting properties on the page;
but if I trace the same activity, it always works and always fully populates the page -- what's the difference?