I have a Ajax workflow where i read JSON string of length 10,000 - 50,000 in length. Now function i am using for parsing JSON into javascript Object is throwing exception and failing to execute the statement.
Is there some kind on limit on json string that can be parsed, or eval can execute ?
I have tried
- YUI JSON utility to parse and
- Also tried eval() and
- new Function("return" + jsonString + ";")() also.
But no luck ? can anybody help me with this problem or suggest something.