If you send a httprequest to a web address (URL) under steps in a web scenario under steps, this (in our case) will return with a JSON result.
JSON stands for JavaScript Object Notation.
Example is:
{"status": "UP", "diskSpace": {"status": "UP", "total": 107371032576, "free": 89948925952, "threshold": 10485760}, "jms": {"status": "UP"}}
Is there a possibility to parse this JSON response so that I can immediately ask for the value of, for example: diskSpace.status, diskSpace.threshold or jms.status?
We are currently looking at the content of the response: if the word "UP" is in there, the status is OK, but I specifically want to know the status of, for example, "jms"
JSON stands for JavaScript Object Notation.
Example is:
{"status": "UP", "diskSpace": {"status": "UP", "total": 107371032576, "free": 89948925952, "threshold": 10485760}, "jms": {"status": "UP"}}
Is there a possibility to parse this JSON response so that I can immediately ask for the value of, for example: diskSpace.status, diskSpace.threshold or jms.status?
We are currently looking at the content of the response: if the word "UP" is in there, the status is OK, but I specifically want to know the status of, for example, "jms"
Comment